@google/earthengine 0.1.398 → 0.1.399

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/build/main.js CHANGED
@@ -6390,163 +6390,41 @@ function module$contents$safevalues$internals$string_literal_isTemplateObject(te
6390
6390
  return Array.isArray(templateObj) && Array.isArray(templateObj.raw) && templateObj.length === templateObj.raw.length && (module$contents$safevalues$internals$string_literal_isTranspiled || templateObj !== templateObj.raw) && (module$contents$safevalues$internals$string_literal_isTranspiled && !module$contents$safevalues$internals$string_literal_frozenTSA || module$contents$safevalues$internals$string_literal_checkFrozen(templateObj)) ?
6391
6391
  !0 : !1;
6392
6392
  }
6393
- ;goog.fs = {};
6394
- goog.fs.url = {};
6395
- goog.fs.url.createObjectUrl = function(obj) {
6396
- return goog.fs.url.getUrlObject_().createObjectURL(obj);
6397
- };
6398
- goog.fs.url.revokeObjectUrl = function(url) {
6399
- goog.fs.url.getUrlObject_().revokeObjectURL(url);
6400
- };
6401
- goog.fs.url.UrlObject_ = function() {
6402
- };
6403
- goog.fs.url.UrlObject_.prototype.createObjectURL = function(arg) {
6404
- };
6405
- goog.fs.url.UrlObject_.prototype.revokeObjectURL = function(s) {
6406
- };
6407
- goog.fs.url.getUrlObject_ = function() {
6408
- var urlObject = goog.fs.url.findUrlObject_();
6409
- if (null != urlObject) {
6410
- return urlObject;
6411
- }
6412
- throw Error("This browser doesn't seem to support blob URLs");
6413
- };
6414
- goog.fs.url.findUrlObject_ = function() {
6415
- return void 0 !== goog.global.URL && void 0 !== goog.global.URL.createObjectURL ? goog.global.URL : void 0 !== goog.global.createObjectURL ? goog.global : null;
6416
- };
6417
- goog.fs.url.browserSupportsObjectUrls = function() {
6418
- return null != goog.fs.url.findUrlObject_();
6419
- };
6420
- goog.html.SafeUrl = function(value, token) {
6421
- if (goog.DEBUG && token !== goog.html.SafeUrl.CONSTRUCTOR_TOKEN_PRIVATE_) {
6422
- throw Error("SafeUrl is not meant to be built directly");
6423
- }
6424
- this.privateDoNotAccessOrElseSafeUrlWrappedValue_ = value;
6425
- };
6426
- goog.html.SafeUrl.prototype.toString = function() {
6427
- return this.privateDoNotAccessOrElseSafeUrlWrappedValue_.toString();
6428
- };
6429
- goog.html.SafeUrl.INNOCUOUS_STRING = "about:invalid#zClosurez";
6430
- goog.html.SafeUrl.unwrap = function(safeUrl) {
6431
- if (safeUrl instanceof goog.html.SafeUrl && safeUrl.constructor === goog.html.SafeUrl) {
6432
- return safeUrl.privateDoNotAccessOrElseSafeUrlWrappedValue_;
6433
- }
6434
- goog.asserts.fail("expected object of type SafeUrl, got '" + safeUrl + "' of type " + goog.typeOf(safeUrl));
6435
- return "type_error:SafeUrl";
6436
- };
6437
- goog.html.SafeUrl.fromConstant = function(url) {
6438
- var str = goog.string.Const.unwrap(url);
6439
- if (goog.DEBUG && "javascript:" === goog.html.SafeUrl.extractScheme(str)) {
6440
- throw Error("Building a SafeUrl with a javascript scheme is not supported");
6441
- }
6442
- return goog.html.SafeUrl.createSafeUrlSecurityPrivateDoNotAccessOrElse(str);
6443
- };
6444
- goog.html.SAFE_MIME_TYPE_PATTERN_ = RegExp('^(?:audio/(?:3gpp2|3gpp|aac|L16|midi|mp3|mp4|mpeg|oga|ogg|opus|x-m4a|x-matroska|x-wav|wav|webm)|font/\\w+|image/(?:bmp|gif|jpeg|jpg|png|tiff|webp|x-icon|heic|heif)|video/(?:mpeg|mp4|ogg|webm|quicktime|x-matroska))(?:;\\w+=(?:\\w+|"[\\w;,= ]+"))*$', "i");
6445
- goog.html.SafeUrl.isSafeMimeType = function(mimeType) {
6446
- return goog.html.SAFE_MIME_TYPE_PATTERN_.test(mimeType);
6447
- };
6448
- goog.html.SafeUrl.fromBlob = function(blob) {
6449
- var url = goog.html.SafeUrl.isSafeMimeType(blob.type) ? goog.fs.url.createObjectUrl(blob) : goog.html.SafeUrl.INNOCUOUS_STRING;
6450
- return goog.html.SafeUrl.createSafeUrlSecurityPrivateDoNotAccessOrElse(url);
6451
- };
6452
- goog.html.DATA_URL_PATTERN_ = /^data:(.*);base64,[a-z0-9+\/]+=*$/i;
6453
- goog.html.SafeUrl.tryFromDataUrl = function(dataUrl) {
6454
- dataUrl = String(dataUrl);
6455
- var filteredDataUrl = dataUrl.replace(/(%0A|%0D)/g, "");
6456
- return filteredDataUrl.match(goog.html.DATA_URL_PATTERN_) ? goog.html.SafeUrl.createSafeUrlSecurityPrivateDoNotAccessOrElse(filteredDataUrl) : null;
6457
- };
6458
- goog.html.SafeUrl.fromDataUrl = function(dataUrl) {
6459
- return goog.html.SafeUrl.tryFromDataUrl(dataUrl) || goog.html.SafeUrl.INNOCUOUS_URL;
6460
- };
6461
- goog.html.SafeUrl.fromTrustedResourceUrl = function(trustedResourceUrl) {
6462
- return goog.html.SafeUrl.createSafeUrlSecurityPrivateDoNotAccessOrElse(goog.html.TrustedResourceUrl.unwrap(trustedResourceUrl));
6463
- };
6464
- goog.html.SAFE_URL_PATTERN_ = /^(?:(?:https?|mailto|ftp):|[^:/?#]*(?:[/?#]|$))/i;
6465
- goog.html.SafeUrl.trySanitize = function(url) {
6466
- if (url instanceof goog.html.SafeUrl) {
6467
- return url;
6468
- }
6469
- url = String(url);
6470
- return goog.html.SAFE_URL_PATTERN_.test(url) ? goog.html.SafeUrl.createSafeUrlSecurityPrivateDoNotAccessOrElse(url) : goog.html.SafeUrl.tryFromDataUrl(url);
6471
- };
6472
- goog.html.SafeUrl.sanitize = function(url) {
6473
- return goog.html.SafeUrl.trySanitize(url) || goog.html.SafeUrl.INNOCUOUS_URL;
6474
- };
6475
- goog.html.SafeUrl.sanitizeAssertUnchanged = function(url, opt_allowDataUrl) {
6476
- if (url instanceof goog.html.SafeUrl) {
6477
- return url;
6478
- }
6479
- url = String(url);
6480
- if (opt_allowDataUrl && /^data:/i.test(url)) {
6481
- var safeUrl = goog.html.SafeUrl.fromDataUrl(url);
6482
- if (safeUrl.toString() == url) {
6483
- return safeUrl;
6484
- }
6485
- }
6486
- goog.asserts.assert(goog.html.SAFE_URL_PATTERN_.test(url), "%s does not match the safe URL pattern", url) || (url = goog.html.SafeUrl.INNOCUOUS_STRING);
6487
- return goog.html.SafeUrl.createSafeUrlSecurityPrivateDoNotAccessOrElse(url);
6488
- };
6489
- goog.html.SafeUrl.ASSUME_IMPLEMENTS_URL_API_GOOG = 2020 <= goog.FEATURESET_YEAR;
6490
- goog.html.SafeUrl.supportsURLAPI = function() {
6491
- if (goog.html.SafeUrl.ASSUME_IMPLEMENTS_URL_API_GOOG) {
6492
- return !0;
6493
- }
6494
- try {
6495
- return new URL("s://g"), !0;
6496
- } catch (e) {
6497
- return !1;
6498
- }
6499
- }();
6500
- goog.html.SafeUrl.legacyExtractScheme = function(url) {
6501
- var aTag = document.createElement("a");
6502
- try {
6503
- aTag.href = url;
6504
- } catch (e) {
6505
- return;
6506
- }
6507
- var protocol = aTag.protocol;
6508
- return ":" === protocol || "" === protocol ? "https:" : protocol;
6509
- };
6510
- goog.html.SafeUrl.extractScheme = function(url) {
6511
- if (!goog.html.SafeUrl.supportsURLAPI) {
6512
- return goog.html.SafeUrl.legacyExtractScheme(url);
6513
- }
6514
- try {
6515
- var parsedUrl = new URL(url);
6516
- } catch (e) {
6517
- return "https:";
6518
- }
6519
- return parsedUrl.protocol;
6520
- };
6521
- goog.html.SafeUrl.sanitizeJavascriptUrlAssertUnchanged = function(url) {
6522
- if (url instanceof goog.html.SafeUrl) {
6523
- return url;
6393
+ ;var module$exports$safevalues$internals$secrets = {}, module$contents$safevalues$internals$secrets_module = module$contents$safevalues$internals$secrets_module || {id:"third_party/javascript/safevalues/internals/secrets.closure.js"};
6394
+ module$exports$safevalues$internals$secrets.secretToken = {};
6395
+ function module$contents$safevalues$internals$secrets_ensureTokenIsValid(token) {
6396
+ if (goog.DEBUG && token !== module$exports$safevalues$internals$secrets.secretToken) {
6397
+ throw Error("Bad secret");
6524
6398
  }
6525
- url = String(url);
6526
- var parsedScheme = goog.html.SafeUrl.extractScheme(url);
6527
- goog.asserts.assert("javascript:" !== parsedScheme, "%s is a javascript: URL", url) || (url = goog.html.SafeUrl.INNOCUOUS_STRING);
6528
- return goog.html.SafeUrl.createSafeUrlSecurityPrivateDoNotAccessOrElse(url);
6399
+ }
6400
+ module$exports$safevalues$internals$secrets.ensureTokenIsValid = module$contents$safevalues$internals$secrets_ensureTokenIsValid;
6401
+ var module$exports$safevalues$internals$url_impl = {}, module$contents$safevalues$internals$url_impl_module = module$contents$safevalues$internals$url_impl_module || {id:"third_party/javascript/safevalues/internals/url_impl.closure.js"};
6402
+ module$exports$safevalues$internals$url_impl.SafeUrl = function(token) {
6403
+ goog.DEBUG && module$contents$safevalues$internals$secrets_ensureTokenIsValid(token);
6529
6404
  };
6530
- goog.html.SafeUrl.CONSTRUCTOR_TOKEN_PRIVATE_ = {};
6531
- goog.html.SafeUrl.createSafeUrlSecurityPrivateDoNotAccessOrElse = function(url) {
6532
- return new goog.html.SafeUrl(url, goog.html.SafeUrl.CONSTRUCTOR_TOKEN_PRIVATE_);
6405
+ module$exports$safevalues$internals$url_impl.SafeUrl.prototype.toString = function() {
6406
+ return this.privateDoNotAccessOrElseWrappedUrl;
6533
6407
  };
6534
- goog.html.SafeUrl.INNOCUOUS_URL = goog.html.SafeUrl.createSafeUrlSecurityPrivateDoNotAccessOrElse(goog.html.SafeUrl.INNOCUOUS_STRING);
6535
- goog.html.SafeUrl.ABOUT_BLANK = goog.html.SafeUrl.createSafeUrlSecurityPrivateDoNotAccessOrElse("about:blank");
6536
- var module$exports$safevalues$internals$url_impl = {}, module$contents$safevalues$internals$url_impl_module = module$contents$safevalues$internals$url_impl_module || {id:"third_party/javascript/safevalues/internals/url_impl.closure.js"};
6537
- module$exports$safevalues$internals$url_impl.SafeUrl = goog.html.SafeUrl;
6538
- function module$contents$safevalues$internals$url_impl_createUrlInternal(url) {
6539
- return (0,goog.html.SafeUrl.createSafeUrlSecurityPrivateDoNotAccessOrElse)(url);
6408
+ var module$contents$safevalues$internals$url_impl_UrlImpl = module$exports$safevalues$internals$url_impl.SafeUrl;
6409
+ function module$contents$safevalues$internals$url_impl_createUrlInternal(urlValue) {
6410
+ var url = new module$exports$safevalues$internals$url_impl.SafeUrl(module$exports$safevalues$internals$secrets.secretToken);
6411
+ url.privateDoNotAccessOrElseWrappedUrl = urlValue;
6412
+ return url;
6540
6413
  }
6541
6414
  module$exports$safevalues$internals$url_impl.createUrlInternal = module$contents$safevalues$internals$url_impl_createUrlInternal;
6542
6415
  module$exports$safevalues$internals$url_impl.ABOUT_BLANK = module$contents$safevalues$internals$url_impl_createUrlInternal("about:blank");
6543
6416
  module$exports$safevalues$internals$url_impl.INNOCUOUS_URL = module$contents$safevalues$internals$url_impl_createUrlInternal("about:invalid#zClosurez");
6544
6417
  function module$contents$safevalues$internals$url_impl_isUrl(value) {
6545
- return value instanceof goog.html.SafeUrl;
6418
+ return value instanceof module$exports$safevalues$internals$url_impl.SafeUrl;
6546
6419
  }
6547
6420
  module$exports$safevalues$internals$url_impl.isUrl = module$contents$safevalues$internals$url_impl_isUrl;
6548
6421
  function module$contents$safevalues$internals$url_impl_unwrapUrl(value) {
6549
- return goog.html.SafeUrl.unwrap(value);
6422
+ if (module$contents$safevalues$internals$url_impl_isUrl(value)) {
6423
+ return value.privateDoNotAccessOrElseWrappedUrl;
6424
+ }
6425
+ var message = "";
6426
+ goog.DEBUG && (message = "Unexpected type when unwrapping SafeUrl, got '" + value + "' of type '" + typeof value + "'");
6427
+ throw Error(message);
6550
6428
  }
6551
6429
  module$exports$safevalues$internals$url_impl.unwrapUrl = module$contents$safevalues$internals$url_impl_unwrapUrl;
6552
6430
  var module$exports$safevalues$builders$url_builders = {}, module$contents$safevalues$builders$url_builders_module = module$contents$safevalues$builders$url_builders_module || {id:"third_party/javascript/safevalues/builders/url_builders.closure.js"};
@@ -6689,7 +6567,7 @@ function module$contents$safevalues$builders$url_builders_extractScheme(url) {
6689
6567
  }
6690
6568
  module$exports$safevalues$builders$url_builders.extractScheme = module$contents$safevalues$builders$url_builders_extractScheme;
6691
6569
  var module$contents$safevalues$builders$url_builders_ALLOWED_SCHEMES = ["data:", "http:", "https:", "mailto:", "ftp:"];
6692
- module$exports$safevalues$builders$url_builders.IS_NOT_JAVASCRIPT_URL_PATTERN = /^\s*(?!javascript:)(?:[a-z0-9+.-]+:|[^:\/?#]*(?:[\/?#]|$))/i;
6570
+ module$exports$safevalues$builders$url_builders.IS_NOT_JAVASCRIPT_URL_PATTERN = /^\s*(?!javascript:)(?:[\w+.-]+:|[^:/?#]*(?:[/?#]|$))/i;
6693
6571
  function module$contents$safevalues$builders$url_builders_hasJavascriptUrlScheme(url) {
6694
6572
  return !module$exports$safevalues$builders$url_builders.IS_NOT_JAVASCRIPT_URL_PATTERN.test(url);
6695
6573
  }
@@ -6702,7 +6580,7 @@ function module$contents$safevalues$builders$url_builders_sanitizeJavaScriptUrl(
6702
6580
  }
6703
6581
  module$exports$safevalues$builders$url_builders.sanitizeJavaScriptUrl = module$contents$safevalues$builders$url_builders_sanitizeJavaScriptUrl;
6704
6582
  function module$contents$safevalues$builders$url_builders_unwrapUrlOrSanitize(url) {
6705
- return url instanceof goog.html.SafeUrl ? module$contents$safevalues$internals$url_impl_unwrapUrl(url) : module$contents$safevalues$builders$url_builders_sanitizeJavaScriptUrl(url);
6583
+ return url instanceof module$exports$safevalues$internals$url_impl.SafeUrl ? module$contents$safevalues$internals$url_impl_unwrapUrl(url) : module$contents$safevalues$builders$url_builders_sanitizeJavaScriptUrl(url);
6706
6584
  }
6707
6585
  module$exports$safevalues$builders$url_builders.unwrapUrlOrSanitize = module$contents$safevalues$builders$url_builders_unwrapUrlOrSanitize;
6708
6586
  function module$contents$safevalues$builders$url_builders_restrictivelySanitizeUrl(url) {
@@ -6748,14 +6626,6 @@ module$exports$safevalues$dom$elements$button.setFormaction = function(button, u
6748
6626
  var sanitizedUrl = module$contents$safevalues$builders$url_builders_unwrapUrlOrSanitize(url);
6749
6627
  void 0 !== sanitizedUrl && (button.formAction = sanitizedUrl);
6750
6628
  };
6751
- var module$exports$safevalues$internals$secrets = {}, module$contents$safevalues$internals$secrets_module = module$contents$safevalues$internals$secrets_module || {id:"third_party/javascript/safevalues/internals/secrets.closure.js"};
6752
- module$exports$safevalues$internals$secrets.secretToken = {};
6753
- function module$contents$safevalues$internals$secrets_ensureTokenIsValid(token) {
6754
- if (goog.DEBUG && token !== module$exports$safevalues$internals$secrets.secretToken) {
6755
- throw Error("Bad secret");
6756
- }
6757
- }
6758
- module$exports$safevalues$internals$secrets.ensureTokenIsValid = module$contents$safevalues$internals$secrets_ensureTokenIsValid;
6759
6629
  var module$exports$safevalues$internals$attribute_impl = {}, module$contents$safevalues$internals$attribute_impl_module = module$contents$safevalues$internals$attribute_impl_module || {id:"third_party/javascript/safevalues/internals/attribute_impl.closure.js"};
6760
6630
  module$exports$safevalues$internals$attribute_impl.SafeAttributePrefix = function() {
6761
6631
  };
@@ -6924,6 +6794,14 @@ goog.dom.tags.VOID_TAGS_ = {area:!0, base:!0, br:!0, col:!0, command:!0, embed:!
6924
6794
  goog.dom.tags.isVoidTag = function(tagName) {
6925
6795
  return !0 === goog.dom.tags.VOID_TAGS_[tagName];
6926
6796
  };
6797
+ var module$exports$safevalues$for_closure$index = {}, module$contents$safevalues$for_closure$index_module = module$contents$safevalues$for_closure$index_module || {id:"third_party/javascript/safevalues/for_closure/index.closure.js"};
6798
+ module$exports$safevalues$for_closure$index.sanitizeUrl = module$contents$safevalues$builders$url_builders_sanitizeUrl;
6799
+ module$exports$safevalues$for_closure$index.SafeUrl = module$exports$safevalues$internals$url_impl.SafeUrl;
6800
+ module$exports$safevalues$for_closure$index.unwrapUrl = module$contents$safevalues$internals$url_impl_unwrapUrl;
6801
+ var module$exports$safevalues$for_closure = {};
6802
+ module$exports$safevalues$for_closure.sanitizeUrl = module$contents$safevalues$builders$url_builders_sanitizeUrl;
6803
+ module$exports$safevalues$for_closure.SafeUrl = module$exports$safevalues$internals$url_impl.SafeUrl;
6804
+ module$exports$safevalues$for_closure.unwrapUrl = module$contents$safevalues$internals$url_impl_unwrapUrl;
6927
6805
  var module$contents$goog$html$SafeStyle_CONSTRUCTOR_TOKEN_PRIVATE = {}, module$contents$goog$html$SafeStyle_SafeStyle = function(value, token) {
6928
6806
  if (goog.DEBUG && token !== module$contents$goog$html$SafeStyle_CONSTRUCTOR_TOKEN_PRIVATE) {
6929
6807
  throw Error("SafeStyle is not meant to be built directly");
@@ -6975,8 +6853,8 @@ module$contents$goog$html$SafeStyle_SafeStyle.concat = function(var_args) {
6975
6853
  module$contents$goog$html$SafeStyle_SafeStyle.EMPTY = module$contents$goog$html$SafeStyle_SafeStyle.createSafeStyleSecurityPrivateDoNotAccessOrElse("");
6976
6854
  module$contents$goog$html$SafeStyle_SafeStyle.INNOCUOUS_STRING = "zClosurez";
6977
6855
  function module$contents$goog$html$SafeStyle_sanitizePropertyValue(value) {
6978
- if (value instanceof goog.html.SafeUrl) {
6979
- return 'url("' + goog.html.SafeUrl.unwrap(value).replace(/</g, "%3c").replace(/[\\"]/g, "\\$&") + '")';
6856
+ if (value instanceof module$exports$safevalues$internals$url_impl.SafeUrl) {
6857
+ return 'url("' + value.toString().replace(/</g, "%3c").replace(/[\\"]/g, "\\$&") + '")';
6980
6858
  }
6981
6859
  var result = value instanceof goog.string.Const ? goog.string.Const.unwrap(value) : module$contents$goog$html$SafeStyle_sanitizePropertyValueString(String(value));
6982
6860
  if (/[{;}]/.test(result)) {
@@ -7036,7 +6914,7 @@ function module$contents$goog$html$SafeStyle_sanitizeUrl(value) {
7036
6914
  quote = start;
7037
6915
  return inside;
7038
6916
  });
7039
- var sanitized = goog.html.SafeUrl.sanitize(url).toString();
6917
+ var sanitized = module$contents$safevalues$builders$url_builders_sanitizeUrl(url).toString();
7040
6918
  return before + quote + sanitized + quote + after;
7041
6919
  });
7042
6920
  }
@@ -7164,7 +7042,7 @@ module$contents$goog$html$SafeHtml_SafeHtml.createSandboxIframe = function(src,
7164
7042
  throw Error(module$contents$goog$html$SafeHtml_SafeHtml.ENABLE_ERROR_MESSAGES ? "The browser does not support sandboxed iframes." : "");
7165
7043
  }
7166
7044
  var fixedAttributes = {};
7167
- fixedAttributes.src = src ? goog.html.SafeUrl.unwrap(goog.html.SafeUrl.sanitize(src)) : null;
7045
+ fixedAttributes.src = src ? module$contents$safevalues$internals$url_impl_unwrapUrl(module$contents$safevalues$builders$url_builders_sanitizeUrl(src)) : null;
7168
7046
  fixedAttributes.srcdoc = srcdoc || null;
7169
7047
  fixedAttributes.sandbox = "";
7170
7048
  var combinedAttrs = module$contents$goog$html$SafeHtml_SafeHtml.combineAttributes(fixedAttributes, {}, attributes);
@@ -7188,7 +7066,7 @@ module$contents$goog$html$SafeHtml_SafeHtml.createStyle = function(styleSheet, a
7188
7066
  return module$contents$goog$html$SafeHtml_SafeHtml.createSafeHtmlTagSecurityPrivateDoNotAccessOrElse("style", combinedAttrs, htmlContent);
7189
7067
  };
7190
7068
  module$contents$goog$html$SafeHtml_SafeHtml.createMetaRefresh = function(url, secs) {
7191
- var unwrappedUrl = goog.html.SafeUrl.unwrap(goog.html.SafeUrl.sanitize(url));
7069
+ var unwrappedUrl = module$contents$safevalues$internals$url_impl_unwrapUrl(module$contents$safevalues$builders$url_builders_sanitizeUrl(url));
7192
7070
  (module$contents$goog$labs$userAgent$browser_matchIE() || module$contents$goog$labs$userAgent$browser_matchEdgeHtml()) && goog.string.internal.contains(unwrappedUrl, ";") && (unwrappedUrl = "'" + unwrappedUrl.replace(/'/g, "%27") + "'");
7193
7071
  return module$contents$goog$html$SafeHtml_SafeHtml.createSafeHtmlTagSecurityPrivateDoNotAccessOrElse("meta", {"http-equiv":"refresh", content:(secs || 0) + "; url=" + unwrappedUrl});
7194
7072
  };
@@ -7280,16 +7158,16 @@ function module$contents$goog$html$SafeHtml_getAttrNameAndValue(tagName, name, v
7280
7158
  if (name.toLowerCase() in module$contents$goog$html$SafeHtml_URL_ATTRIBUTES) {
7281
7159
  if (value instanceof goog.html.TrustedResourceUrl) {
7282
7160
  value = goog.html.TrustedResourceUrl.unwrap(value);
7283
- } else if (value instanceof goog.html.SafeUrl) {
7284
- value = goog.html.SafeUrl.unwrap(value);
7161
+ } else if (value instanceof module$exports$safevalues$internals$url_impl.SafeUrl) {
7162
+ value = module$contents$safevalues$internals$url_impl_unwrapUrl(value);
7285
7163
  } else if ("string" === typeof value) {
7286
- value = goog.html.SafeUrl.sanitize(value).toString();
7164
+ value = module$contents$safevalues$builders$url_builders_sanitizeUrl(value).toString();
7287
7165
  } else {
7288
- throw Error(module$contents$goog$html$SafeHtml_SafeHtml.ENABLE_ERROR_MESSAGES ? 'Attribute "' + name + '" on tag "' + tagName + '" requires goog.html.SafeUrl, goog.string.Const, or string, value "' + value + '" given.' : "");
7166
+ throw Error(module$contents$goog$html$SafeHtml_SafeHtml.ENABLE_ERROR_MESSAGES ? 'Attribute "' + name + '" on tag "' + tagName + '" requires safevalues.SafeUrl, goog.string.Const, or string, value "' + value + '" given.' : "");
7289
7167
  }
7290
7168
  }
7291
7169
  }
7292
- goog.asserts.assert(value instanceof goog.html.SafeUrl || value instanceof goog.html.TrustedResourceUrl || value instanceof module$contents$goog$html$SafeStyle_SafeStyle || value instanceof module$contents$goog$html$SafeHtml_SafeHtml || "string" === typeof value || "number" === typeof value, "String or number value expected, got " + typeof value + " with value: " + value);
7170
+ goog.asserts.assert(value instanceof module$exports$safevalues$internals$url_impl.SafeUrl || value instanceof goog.html.TrustedResourceUrl || value instanceof module$contents$goog$html$SafeStyle_SafeStyle || value instanceof module$contents$goog$html$SafeHtml_SafeHtml || "string" === typeof value || "number" === typeof value, "String or number value expected, got " + typeof value + " with value: " + value);
7293
7171
  return name + '="' + goog.string.internal.htmlEscape(String(value)) + '"';
7294
7172
  }
7295
7173
  function module$contents$goog$html$SafeHtml_getStyleValue(value) {
@@ -7437,9 +7315,9 @@ function module$contents$safevalues$dom$elements$iframe_setSandboxDirectives(ifr
7437
7315
  }
7438
7316
  }
7439
7317
  module$exports$safevalues$dom$elements$iframe.TypeCannotBeUsedWithIntentError = function(type, intent) {
7440
- var $jscomp$tmp$error = Error.call(this, type + " cannot be used with intent " + module$exports$safevalues$dom$elements$iframe.Intent[intent]);
7441
- this.message = $jscomp$tmp$error.message;
7442
- "stack" in $jscomp$tmp$error && (this.stack = $jscomp$tmp$error.stack);
7318
+ var $jscomp$tmp$error$240424914$1 = Error.call(this, type + " cannot be used with intent " + module$exports$safevalues$dom$elements$iframe.Intent[intent]);
7319
+ this.message = $jscomp$tmp$error$240424914$1.message;
7320
+ "stack" in $jscomp$tmp$error$240424914$1 && (this.stack = $jscomp$tmp$error$240424914$1.stack);
7443
7321
  this.type = type;
7444
7322
  this.intent = intent;
7445
7323
  this.name = "TypeCannotBeUsedWithIntentError";
@@ -7950,9 +7828,9 @@ function module$contents$safevalues$dom$globals$dom_parser_parseFromString(parse
7950
7828
  module$exports$safevalues$dom$globals$dom_parser.parseFromString = module$contents$safevalues$dom$globals$dom_parser_parseFromString;
7951
7829
  var module$exports$safevalues$dom$globals$fetch = {}, module$contents$safevalues$dom$globals$fetch_module = module$contents$safevalues$dom$globals$fetch_module || {id:"third_party/javascript/safevalues/dom/globals/fetch.closure.js"};
7952
7830
  module$exports$safevalues$dom$globals$fetch.IncorrectContentTypeError = function(url, typeName, contentType) {
7953
- var $jscomp$tmp$error = Error.call(this, url + " was requested as a " + typeName + ', but the response Content-Type, "' + contentType + " is not appropriate for this type of content.");
7954
- this.message = $jscomp$tmp$error.message;
7955
- "stack" in $jscomp$tmp$error && (this.stack = $jscomp$tmp$error.stack);
7831
+ var $jscomp$tmp$error$m991617773$4 = Error.call(this, url + " was requested as a " + typeName + ', but the response Content-Type, "' + contentType + " is not appropriate for this type of content.");
7832
+ this.message = $jscomp$tmp$error$m991617773$4.message;
7833
+ "stack" in $jscomp$tmp$error$m991617773$4 && (this.stack = $jscomp$tmp$error$m991617773$4.stack);
7956
7834
  this.url = url;
7957
7835
  this.typeName = typeName;
7958
7836
  this.contentType = contentType;
@@ -7965,47 +7843,47 @@ function module$contents$safevalues$dom$globals$fetch_privatecreateHtmlInternal(
7965
7843
  }
7966
7844
  function module$contents$safevalues$dom$globals$fetch_fetchResourceUrl(u, init) {
7967
7845
  var response, $jscomp$optchain$tmpm991617773$0, $jscomp$optchain$tmpm991617773$1, $jscomp$optchain$tmpm991617773$2, mimeType;
7968
- return $jscomp.asyncExecutePromiseGeneratorProgram(function($jscomp$generator$context$m991617773$6) {
7969
- if (1 == $jscomp$generator$context$m991617773$6.nextAddress) {
7970
- return $jscomp$generator$context$m991617773$6.yield(fetch(module$contents$safevalues$internals$resource_url_impl_unwrapResourceUrl(u).toString(), init), 2);
7846
+ return $jscomp.asyncExecutePromiseGeneratorProgram(function($jscomp$generator$context$m991617773$8) {
7847
+ if (1 == $jscomp$generator$context$m991617773$8.nextAddress) {
7848
+ return $jscomp$generator$context$m991617773$8.yield(fetch(module$contents$safevalues$internals$resource_url_impl_unwrapResourceUrl(u).toString(), init), 2);
7971
7849
  }
7972
- response = $jscomp$generator$context$m991617773$6.yieldResult;
7850
+ response = $jscomp$generator$context$m991617773$8.yieldResult;
7973
7851
  mimeType = null == ($jscomp$optchain$tmpm991617773$0 = response.headers.get("Content-Type")) ? void 0 : null == ($jscomp$optchain$tmpm991617773$1 = $jscomp$optchain$tmpm991617773$0.split(";", 2)) ? void 0 : null == ($jscomp$optchain$tmpm991617773$2 = $jscomp$optchain$tmpm991617773$1[0]) ? void 0 : $jscomp$optchain$tmpm991617773$2.toLowerCase();
7974
- return $jscomp$generator$context$m991617773$6.return({html:function() {
7852
+ return $jscomp$generator$context$m991617773$8.return({html:function() {
7975
7853
  var text;
7976
- return $jscomp.asyncExecutePromiseGeneratorProgram(function($jscomp$generator$context$m991617773$3) {
7977
- if (1 == $jscomp$generator$context$m991617773$3.nextAddress) {
7854
+ return $jscomp.asyncExecutePromiseGeneratorProgram(function($jscomp$generator$context$m991617773$5) {
7855
+ if (1 == $jscomp$generator$context$m991617773$5.nextAddress) {
7978
7856
  if ("text/html" !== mimeType) {
7979
7857
  throw new module$exports$safevalues$dom$globals$fetch.IncorrectContentTypeError(response.url, "SafeHtml", "text/html");
7980
7858
  }
7981
- return $jscomp$generator$context$m991617773$3.yield(response.text(), 2);
7859
+ return $jscomp$generator$context$m991617773$5.yield(response.text(), 2);
7982
7860
  }
7983
- text = $jscomp$generator$context$m991617773$3.yieldResult;
7984
- return $jscomp$generator$context$m991617773$3.return(module$contents$safevalues$dom$globals$fetch_privatecreateHtmlInternal(text));
7861
+ text = $jscomp$generator$context$m991617773$5.yieldResult;
7862
+ return $jscomp$generator$context$m991617773$5.return(module$contents$safevalues$dom$globals$fetch_privatecreateHtmlInternal(text));
7985
7863
  });
7986
7864
  }, script:function() {
7987
7865
  var text;
7988
- return $jscomp.asyncExecutePromiseGeneratorProgram(function($jscomp$generator$context$m991617773$4) {
7989
- if (1 == $jscomp$generator$context$m991617773$4.nextAddress) {
7866
+ return $jscomp.asyncExecutePromiseGeneratorProgram(function($jscomp$generator$context$m991617773$6) {
7867
+ if (1 == $jscomp$generator$context$m991617773$6.nextAddress) {
7990
7868
  if ("text/javascript" !== mimeType && "application/javascript" !== mimeType) {
7991
7869
  throw new module$exports$safevalues$dom$globals$fetch.IncorrectContentTypeError(response.url, "SafeScript", "text/javascript");
7992
7870
  }
7993
- return $jscomp$generator$context$m991617773$4.yield(response.text(), 2);
7871
+ return $jscomp$generator$context$m991617773$6.yield(response.text(), 2);
7994
7872
  }
7995
- text = $jscomp$generator$context$m991617773$4.yieldResult;
7996
- return $jscomp$generator$context$m991617773$4.return(module$contents$safevalues$internals$script_impl_createScriptInternal(text));
7873
+ text = $jscomp$generator$context$m991617773$6.yieldResult;
7874
+ return $jscomp$generator$context$m991617773$6.return(module$contents$safevalues$internals$script_impl_createScriptInternal(text));
7997
7875
  });
7998
7876
  }, styleSheet:function() {
7999
7877
  var text;
8000
- return $jscomp.asyncExecutePromiseGeneratorProgram(function($jscomp$generator$context$m991617773$5) {
8001
- if (1 == $jscomp$generator$context$m991617773$5.nextAddress) {
7878
+ return $jscomp.asyncExecutePromiseGeneratorProgram(function($jscomp$generator$context$m991617773$7) {
7879
+ if (1 == $jscomp$generator$context$m991617773$7.nextAddress) {
8002
7880
  if ("text/css" !== mimeType) {
8003
7881
  throw new module$exports$safevalues$dom$globals$fetch.IncorrectContentTypeError(response.url, "SafeStyleSheet", "text/css");
8004
7882
  }
8005
- return $jscomp$generator$context$m991617773$5.yield(response.text(), 2);
7883
+ return $jscomp$generator$context$m991617773$7.yield(response.text(), 2);
8006
7884
  }
8007
- text = $jscomp$generator$context$m991617773$5.yieldResult;
8008
- return $jscomp$generator$context$m991617773$5.return(module$contents$safevalues$internals$style_sheet_impl_createStyleSheetInternal(text));
7885
+ text = $jscomp$generator$context$m991617773$7.yieldResult;
7886
+ return $jscomp$generator$context$m991617773$7.return(module$contents$safevalues$internals$style_sheet_impl_createStyleSheetInternal(text));
8009
7887
  });
8010
7888
  }});
8011
7889
  });
@@ -16282,7 +16160,7 @@ module$exports$safevalues$index.unwrapStyleSheet = module$contents$safevalues$in
16282
16160
  module$exports$safevalues$index.ABOUT_BLANK = module$exports$safevalues$internals$url_impl.ABOUT_BLANK;
16283
16161
  module$exports$safevalues$index.INNOCUOUS_URL = module$exports$safevalues$internals$url_impl.INNOCUOUS_URL;
16284
16162
  module$exports$safevalues$index.isUrl = module$contents$safevalues$internals$url_impl_isUrl;
16285
- module$exports$safevalues$index.SafeUrl = goog.html.SafeUrl;
16163
+ module$exports$safevalues$index.SafeUrl = module$exports$safevalues$internals$url_impl.SafeUrl;
16286
16164
  module$exports$safevalues$index.unwrapUrl = module$contents$safevalues$internals$url_impl_unwrapUrl;
16287
16165
  module$exports$safevalues$index.reportOnlyHtmlPassthrough = module$contents$safevalues$reporting$reporting_reportOnlyHtmlPassthrough;
16288
16166
  module$exports$safevalues$index.HtmlFormatter = module$exports$safevalues$builders$html_formatter.HtmlFormatter;
@@ -19089,18 +18967,18 @@ safevalues.unwrapStyleSheet = module$contents$safevalues$internals$style_sheet_i
19089
18967
  safevalues.ABOUT_BLANK = module$exports$safevalues$internals$url_impl.ABOUT_BLANK;
19090
18968
  safevalues.INNOCUOUS_URL = module$exports$safevalues$internals$url_impl.INNOCUOUS_URL;
19091
18969
  safevalues.isUrl = module$contents$safevalues$internals$url_impl_isUrl;
19092
- safevalues.SafeUrl = goog.html.SafeUrl;
18970
+ safevalues.SafeUrl = module$exports$safevalues$internals$url_impl.SafeUrl;
19093
18971
  safevalues.unwrapUrl = module$contents$safevalues$internals$url_impl_unwrapUrl;
19094
18972
  safevalues.reportOnlyHtmlPassthrough = module$contents$safevalues$reporting$reporting_reportOnlyHtmlPassthrough;
19095
18973
  safevalues.HtmlFormatter = module$exports$safevalues$builders$html_formatter.HtmlFormatter;
19096
18974
  safevalues.createHtml = module$exports$safevalues$index.createHtml;
19097
18975
  safevalues.styleSheetToHtml = module$exports$safevalues$index.styleSheetToHtml;
19098
18976
  safevalues.safeStyleRule = module$exports$safevalues$index.safeStyleRule;
19099
- var $jscomp$templatelit$294235699$96 = $jscomp.createTemplateTagFirstArg(["https://accounts.google.com/gsi/client"]);
18977
+ var $jscomp$templatelit$294235699$99 = $jscomp.createTemplateTagFirstArg(["https://accounts.google.com/gsi/client"]);
19100
18978
  ee.apiclient = {};
19101
18979
  var module$contents$ee$apiclient_apiclient = {};
19102
18980
  ee.apiclient.VERSION = module$exports$ee$apiVersion.V1;
19103
- ee.apiclient.API_CLIENT_VERSION = "0.1.398";
18981
+ ee.apiclient.API_CLIENT_VERSION = "0.1.399";
19104
18982
  ee.apiclient.NULL_VALUE = module$exports$eeapiclient$domain_object.NULL_VALUE;
19105
18983
  ee.apiclient.PromiseRequestService = module$exports$eeapiclient$promise_request_service.PromiseRequestService;
19106
18984
  ee.apiclient.MakeRequestParams = module$contents$eeapiclient$request_params_MakeRequestParams;
@@ -19261,8 +19139,8 @@ module$contents$ee$apiclient_BatchRequestService.prototype.send = function(param
19261
19139
  module$contents$ee$apiclient_BatchRequestService.prototype.makeRequest = function(params) {
19262
19140
  };
19263
19141
  module$contents$ee$apiclient_apiclient.parseBatchReply = function(contentType, responseText, handle) {
19264
- for (var boundary = contentType.split("; boundary=")[1], $jscomp$iter$41 = $jscomp.makeIterator(responseText.split("--" + boundary)), $jscomp$key$294235699$97$part = $jscomp$iter$41.next(); !$jscomp$key$294235699$97$part.done; $jscomp$key$294235699$97$part = $jscomp$iter$41.next()) {
19265
- var groups = $jscomp$key$294235699$97$part.value.split("\r\n\r\n");
19142
+ for (var boundary = contentType.split("; boundary=")[1], $jscomp$iter$41 = $jscomp.makeIterator(responseText.split("--" + boundary)), $jscomp$key$294235699$100$part = $jscomp$iter$41.next(); !$jscomp$key$294235699$100$part.done; $jscomp$key$294235699$100$part = $jscomp$iter$41.next()) {
19143
+ var groups = $jscomp$key$294235699$100$part.value.split("\r\n\r\n");
19266
19144
  if (!(3 > groups.length)) {
19267
19145
  var id = groups[0].match(/\r\nContent-ID: <response-([^>]*)>/)[1], status = Number(groups[1].match(/^HTTP\S*\s(\d+)\s/)[1]), text = groups.slice(2).join("\r\n\r\n");
19268
19146
  handle(id, status, text);
@@ -19390,8 +19268,8 @@ module$contents$ee$apiclient_apiclient.send = function(path, params, callback, m
19390
19268
  var profileHookAtCallTime = module$contents$ee$apiclient_apiclient.profileHook_, contentType = "application/x-www-form-urlencoded";
19391
19269
  body && (contentType = "application/json", method && method.startsWith("multipart") && (contentType = method, method = "POST"));
19392
19270
  method = method || "POST";
19393
- var headers = {"Content-Type":contentType}, version = "0.1.398";
19394
- "0.1.398" === version && (version = "latest");
19271
+ var headers = {"Content-Type":contentType}, version = "0.1.399";
19272
+ "0.1.399" === version && (version = "latest");
19395
19273
  headers[module$contents$ee$apiclient_apiclient.API_CLIENT_VERSION_HEADER] = "ee-js/" + version;
19396
19274
  var authToken = module$contents$ee$apiclient_apiclient.getAuthToken();
19397
19275
  if (null != authToken) {
@@ -19506,7 +19384,7 @@ module$contents$ee$apiclient_apiclient.ensureAuthLibLoaded_ = function(callback)
19506
19384
  callback();
19507
19385
  };
19508
19386
  (function() {
19509
- goog.isObject(goog.global.default_gsi) ? done() : goog.net.jsloader.safeLoad(module$contents$safevalues$builders$resource_url_builders_trustedResourceUrl($jscomp$templatelit$294235699$96)).addCallback(done);
19387
+ goog.isObject(goog.global.default_gsi) ? done() : goog.net.jsloader.safeLoad(module$contents$safevalues$builders$resource_url_builders_trustedResourceUrl($jscomp$templatelit$294235699$99)).addCallback(done);
19510
19388
  })();
19511
19389
  };
19512
19390
  module$contents$ee$apiclient_apiclient.handleAuthResult_ = function(success, error, result) {
@@ -19524,8 +19402,8 @@ module$contents$ee$apiclient_apiclient.handleAuthResult_ = function(success, err
19524
19402
  }
19525
19403
  };
19526
19404
  module$contents$ee$apiclient_apiclient.makeRequest_ = function(params) {
19527
- for (var request = new goog.Uri.QueryData(), $jscomp$iter$42 = $jscomp.makeIterator(Object.entries(params)), $jscomp$key$294235699$98$ = $jscomp$iter$42.next(); !$jscomp$key$294235699$98$.done; $jscomp$key$294235699$98$ = $jscomp$iter$42.next()) {
19528
- var $jscomp$destructuring$var47 = $jscomp.makeIterator($jscomp$key$294235699$98$.value), name = $jscomp$destructuring$var47.next().value, item = $jscomp$destructuring$var47.next().value;
19405
+ for (var request = new goog.Uri.QueryData(), $jscomp$iter$42 = $jscomp.makeIterator(Object.entries(params)), $jscomp$key$294235699$101$ = $jscomp$iter$42.next(); !$jscomp$key$294235699$101$.done; $jscomp$key$294235699$101$ = $jscomp$iter$42.next()) {
19406
+ var $jscomp$destructuring$var47 = $jscomp.makeIterator($jscomp$key$294235699$101$.value), name = $jscomp$destructuring$var47.next().value, item = $jscomp$destructuring$var47.next().value;
19529
19407
  request.set(name, item);
19530
19408
  }
19531
19409
  return request;
@@ -24740,6 +24618,7 @@ goog.events.EventHandler.prototype.disposeInternal = function() {
24740
24618
  goog.events.EventHandler.prototype.handleEvent = function(e) {
24741
24619
  throw Error("EventHandler.handleEvent not implemented");
24742
24620
  };
24621
+ goog.fs = {};
24743
24622
  goog.fs.DOMErrorLike = function() {
24744
24623
  };
24745
24624
  goog.fs.Error = function(error, action) {
@@ -26957,29 +26836,29 @@ ee.data.Profiler.Format.prototype.toString = function() {
26957
26836
  ee.data.Profiler.Format.TEXT = new ee.data.Profiler.Format("text");
26958
26837
  ee.data.Profiler.Format.JSON = new ee.data.Profiler.Format("json");
26959
26838
  (function() {
26960
- var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction._call ee.ApiFunction.lookup ee.ApiFunction._apply ee.batch.Export.image.toCloudStorage ee.batch.Export.video.toCloudStorage ee.batch.Export.table.toFeatureView ee.batch.Export.video.toDrive ee.batch.Export.table.toDrive ee.batch.Export.table.toAsset ee.batch.Export.image.toDrive ee.batch.Export.classifier.toAsset ee.batch.Export.table.toCloudStorage ee.batch.Export.image.toAsset ee.batch.Export.map.toCloudStorage ee.batch.Export.videoMap.toCloudStorage ee.batch.Export.table.toBigQuery ee.Collection.prototype.filterBounds ee.Collection.prototype.filter ee.Collection.prototype.limit ee.Collection.prototype.sort ee.Collection.prototype.iterate ee.Collection.prototype.map ee.Collection.prototype.filterDate ee.Collection.prototype.filterMetadata ee.ComputedObject.prototype.aside ee.ComputedObject.prototype.evaluate ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.serialize ee.data.setAssetAcl ee.data.makeThumbUrl ee.data.listAssets ee.data.renameAsset ee.data.authenticateViaOauth ee.data.getMapId ee.data.setAssetProperties ee.data.getTaskList ee.data.listBuckets ee.data.copyAsset ee.data.getTableDownloadId ee.data.makeTableDownloadUrl ee.data.authenticate ee.data.deleteAsset ee.data.getTileUrl ee.data.getTaskListWithLimit ee.data.startTableIngestion ee.data.getAssetRootQuota ee.data.listOperations ee.data.getAssetAcl ee.data.getWorkloadTag ee.data.getDownloadId ee.data.cancelOperation ee.data.listImages ee.data.makeDownloadUrl ee.data.authenticateViaPopup ee.data.getFeatureViewTilesKey ee.data.listFeatures ee.data.getAssetRoots ee.data.getAsset ee.data.createAssetHome ee.data.getOperation ee.data.setWorkloadTag ee.data.authenticateViaPrivateKey ee.data.newTaskId ee.data.getInfo ee.data.createAsset ee.data.computeValue ee.data.setDefaultWorkloadTag ee.data.getThumbId ee.data.cancelTask ee.data.resetWorkloadTag ee.data.getVideoThumbId ee.data.updateAsset ee.data.getTaskStatus ee.data.getList ee.data.updateTask ee.data.startIngestion ee.data.getFilmstripThumbId ee.data.createFolder ee.data.startProcessing ee.Date ee.Deserializer.decodeCloudApi ee.Deserializer.fromJSON ee.Deserializer.fromCloudApiJSON ee.Deserializer.decode ee.Dictionary ee.apply ee.TILE_SIZE ee.initialize ee.call ee.reset ee.Algorithms ee.InitState ee.Element.prototype.set ee.Encodable.SourceFrame ee.Feature ee.Feature.prototype.getInfo ee.Feature.prototype.getMapId ee.Feature.prototype.getMap ee.FeatureCollection.prototype.getMap ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection.prototype.getMapId ee.FeatureCollection.prototype.getInfo ee.FeatureCollection.prototype.select ee.FeatureCollection ee.Filter.or ee.Filter.gte ee.Filter.lte ee.Filter ee.Filter.date ee.Filter.eq ee.Filter.metadata ee.Filter.gt ee.Filter.bounds ee.Filter.prototype.not ee.Filter.and ee.Filter.neq ee.Filter.inList ee.Filter.lt ee.Function.prototype.apply ee.Function.prototype.call ee.Geometry ee.Geometry.MultiPoint ee.Geometry.LineString ee.Geometry.MultiPolygon ee.Geometry.BBox ee.Geometry.Rectangle ee.Geometry.Point ee.Geometry.Polygon ee.Geometry.prototype.toGeoJSON ee.Geometry.LinearRing ee.Geometry.MultiLineString ee.Geometry.prototype.toGeoJSONString ee.Geometry.prototype.serialize ee.Image.prototype.getDownloadURL ee.Image.prototype.getThumbURL ee.Image.prototype.select ee.Image.prototype.getMap ee.Image.prototype.getThumbId ee.Image.rgb ee.Image.prototype.rename ee.Image.cat ee.Image.prototype.clip ee.Image.prototype.getMapId ee.Image ee.Image.prototype.expression ee.Image.prototype.getInfo ee.ImageCollection ee.ImageCollection.prototype.getFilmstripThumbURL ee.ImageCollection.prototype.first ee.ImageCollection.prototype.getMap ee.ImageCollection.prototype.getInfo ee.ImageCollection.prototype.select ee.ImageCollection.prototype.linkCollection ee.ImageCollection.prototype.getVideoThumbURL ee.ImageCollection.prototype.getMapId ee.List ee.Number ee.Serializer.encode ee.Serializer.encodeCloudApiPretty ee.Serializer.toJSON ee.Serializer.encodeCloudApi ee.Serializer.toCloudApiJSON ee.Serializer.toReadableJSON ee.Serializer.toReadableCloudApiJSON ee.String ee.Terrain".split(" "),
26961
- orderedParamLists = [["name", "var_args"], ["name"], ["name", "namedArgs"], "image opt_description opt_bucket opt_fileNamePrefix opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_fileDimensions opt_skipEmptyTiles opt_fileFormat opt_formatOptions opt_priority".split(" "), "collection opt_description opt_bucket opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames opt_priority".split(" "),
26962
- "collection opt_description opt_assetId opt_maxFeaturesPerTile opt_thinningStrategy opt_thinningRanking opt_zOrderRanking opt_priority".split(" "), "collection opt_description opt_folder opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames opt_priority".split(" "), "collection opt_description opt_folder opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices opt_priority".split(" "), ["collection", "opt_description",
26963
- "opt_assetId", "opt_maxVertices", "opt_priority"], "image opt_description opt_folder opt_fileNamePrefix opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_fileDimensions opt_skipEmptyTiles opt_fileFormat opt_formatOptions opt_priority".split(" "), ["classifier", "opt_description", "opt_assetId", "opt_priority"], "collection opt_description opt_bucket opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices opt_priority".split(" "), "image opt_description opt_assetId opt_pyramidingPolicy opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_priority".split(" "),
26964
- "image opt_description opt_bucket opt_fileFormat opt_path opt_writePublicTiles opt_scale opt_maxZoom opt_minZoom opt_region opt_skipEmptyTiles opt_mapsApiKey opt_bucketCorsUris opt_priority".split(" "), "collection opt_description opt_bucket opt_fileNamePrefix opt_framesPerSecond opt_writePublicTiles opt_minZoom opt_maxZoom opt_scale opt_region opt_skipEmptyTiles opt_minTimeMachineZoomSubset opt_maxTimeMachineZoomSubset opt_tileWidth opt_tileHeight opt_tileStride opt_videoFormat opt_version opt_mapsApiKey opt_bucketCorsUris opt_priority".split(" "),
26965
- "collection opt_description opt_table opt_overwrite opt_append opt_selectors opt_maxVertices opt_priority".split(" "), ["geometry"], ["filter"], ["max", "opt_property", "opt_ascending"], ["property", "opt_ascending"], ["algorithm", "opt_first"], ["algorithm", "opt_dropNulls"], ["start", "opt_end"], ["name", "operator", "value"], ["func", "var_args"], ["callback"], ["opt_callback"], ["legacy"], ["assetId", "aclUpdate", "opt_callback"], ["id"], ["parent", "opt_params", "opt_callback"], ["sourceId",
26966
- "destinationId", "opt_callback"], "clientId success opt_error opt_extraScopes opt_onImmediateFailed opt_suppressDefaultScopes".split(" "), ["params", "opt_callback"], ["assetId", "properties", "opt_callback"], ["opt_callback"], ["project", "opt_callback"], ["sourceId", "destinationId", "opt_overwrite", "opt_callback"], ["params", "opt_callback"], ["id"], ["clientId", "success", "opt_error", "opt_extraScopes", "opt_onImmediateFailed"], ["assetId", "opt_callback"], ["id", "x", "y", "z"], ["opt_limit",
26967
- "opt_callback"], ["taskId", "request", "opt_callback"], ["rootId", "opt_callback"], ["opt_limit", "opt_callback"], ["assetId", "opt_callback"], [], ["params", "opt_callback"], ["operationName", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["id"], ["opt_success", "opt_error"], ["params", "opt_callback"], ["asset", "params", "opt_callback"], ["opt_callback"], ["id", "opt_callback"], ["requestedId", "opt_callback"], ["operationName", "opt_callback"], ["tag"], ["privateKey", "opt_success",
26968
- "opt_error", "opt_extraScopes", "opt_suppressDefaultScopes"], ["opt_count", "opt_callback"], ["id", "opt_callback"], ["value", "opt_path", "opt_force", "opt_properties", "opt_callback"], ["obj", "opt_callback"], ["tag"], ["params", "opt_callback"], ["taskId", "opt_callback"], ["opt_resetDefault"], ["params", "opt_callback"], ["assetId", "asset", "updateFields", "opt_callback"], ["taskId", "opt_callback"], ["params", "opt_callback"], ["taskId", "action", "opt_callback"], ["taskId", "request", "opt_callback"],
26969
- ["params", "opt_callback"], ["path", "opt_force", "opt_callback"], ["taskId", "params", "opt_callback"], ["date", "opt_tz"], ["json"], ["json"], ["json"], ["json"], ["opt_dict"], ["func", "namedArgs"], [], "opt_baseurl opt_tileurl opt_successCallback opt_errorCallback opt_xsrfToken opt_project".split(" "), ["func", "var_args"], [], [], [], ["var_args"], [], ["geometry", "opt_properties"], ["opt_callback"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"],
26970
- ["opt_format", "opt_selectors", "opt_filename", "opt_callback"], ["opt_visParams", "opt_callback"], ["opt_callback"], ["propertySelectors", "opt_newProperties", "opt_retainGeometry"], ["args", "opt_column"], ["var_args"], ["name", "value"], ["name", "value"], ["opt_filter"], ["start", "opt_end"], ["name", "value"], ["name", "operator", "value"], ["name", "value"], ["geometry", "opt_errorMargin"], [], ["var_args"], ["name", "value"], ["opt_leftField", "opt_rightValue", "opt_rightField", "opt_leftValue"],
26971
- ["name", "value"], ["namedArgs"], ["var_args"], ["geoJson", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["west", "south", "east", "north"], ["coords", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], [], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"],
26972
- ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], [], ["legacy"], ["params", "opt_callback"], ["params", "opt_callback"], ["var_args"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["r", "g", "b"], ["var_args"], ["var_args"], ["geometry"], ["opt_visParams", "opt_callback"], ["opt_args"], ["expression", "opt_map"], ["opt_callback"], ["args"], ["params", "opt_callback"], [], ["opt_visParams", "opt_callback"], ["opt_callback"], ["selectors", "opt_names"], ["imageCollection",
26973
- "opt_linkedBands", "opt_linkedProperties", "opt_matchPropertyName"], ["params", "opt_callback"], ["opt_visParams", "opt_callback"], ["list"], ["number"], ["obj", "opt_isCompound"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["string"], []];
26974
- [ee.ApiFunction._call, ee.ApiFunction.lookup, ee.ApiFunction._apply, module$contents$ee$batch_Export.image.toCloudStorage, module$contents$ee$batch_Export.video.toCloudStorage, module$contents$ee$batch_Export.table.toFeatureView, module$contents$ee$batch_Export.video.toDrive, module$contents$ee$batch_Export.table.toDrive, module$contents$ee$batch_Export.table.toAsset, module$contents$ee$batch_Export.image.toDrive, module$contents$ee$batch_Export.classifier.toAsset, module$contents$ee$batch_Export.table.toCloudStorage,
26975
- module$contents$ee$batch_Export.image.toAsset, module$contents$ee$batch_Export.map.toCloudStorage, module$contents$ee$batch_Export.videoMap.toCloudStorage, module$contents$ee$batch_Export.table.toBigQuery, ee.Collection.prototype.filterBounds, ee.Collection.prototype.filter, ee.Collection.prototype.limit, ee.Collection.prototype.sort, ee.Collection.prototype.iterate, ee.Collection.prototype.map, ee.Collection.prototype.filterDate, ee.Collection.prototype.filterMetadata, ee.ComputedObject.prototype.aside,
26976
- ee.ComputedObject.prototype.evaluate, ee.ComputedObject.prototype.getInfo, ee.ComputedObject.prototype.serialize, ee.data.setAssetAcl, ee.data.makeThumbUrl, ee.data.listAssets, ee.data.renameAsset, ee.data.authenticateViaOauth, ee.data.getMapId, ee.data.setAssetProperties, ee.data.getTaskList, ee.data.listBuckets, ee.data.copyAsset, ee.data.getTableDownloadId, ee.data.makeTableDownloadUrl, ee.data.authenticate, ee.data.deleteAsset, ee.data.getTileUrl, ee.data.getTaskListWithLimit, ee.data.startTableIngestion,
26977
- ee.data.getAssetRootQuota, ee.data.listOperations, ee.data.getAssetAcl, ee.data.getWorkloadTag, ee.data.getDownloadId, ee.data.cancelOperation, ee.data.listImages, ee.data.makeDownloadUrl, ee.data.authenticateViaPopup, ee.data.getFeatureViewTilesKey, ee.data.listFeatures, ee.data.getAssetRoots, ee.data.getAsset, ee.data.createAssetHome, ee.data.getOperation, ee.data.setWorkloadTag, ee.data.authenticateViaPrivateKey, ee.data.newTaskId, ee.data.getInfo, ee.data.createAsset, ee.data.computeValue,
26978
- ee.data.setDefaultWorkloadTag, ee.data.getThumbId, ee.data.cancelTask, ee.data.resetWorkloadTag, ee.data.getVideoThumbId, ee.data.updateAsset, ee.data.getTaskStatus, ee.data.getList, ee.data.updateTask, ee.data.startIngestion, ee.data.getFilmstripThumbId, ee.data.createFolder, ee.data.startProcessing, ee.Date, ee.Deserializer.decodeCloudApi, ee.Deserializer.fromJSON, ee.Deserializer.fromCloudApiJSON, ee.Deserializer.decode, ee.Dictionary, ee.apply, ee.TILE_SIZE, ee.initialize, ee.call, ee.reset,
26979
- ee.Algorithms, ee.InitState, ee.Element.prototype.set, ee.Encodable.SourceFrame, ee.Feature, ee.Feature.prototype.getInfo, ee.Feature.prototype.getMapId, ee.Feature.prototype.getMap, ee.FeatureCollection.prototype.getMap, ee.FeatureCollection.prototype.getDownloadURL, ee.FeatureCollection.prototype.getMapId, ee.FeatureCollection.prototype.getInfo, ee.FeatureCollection.prototype.select, ee.FeatureCollection, ee.Filter.or, ee.Filter.gte, ee.Filter.lte, ee.Filter, ee.Filter.date, ee.Filter.eq, ee.Filter.metadata,
26980
- ee.Filter.gt, ee.Filter.bounds, ee.Filter.prototype.not, ee.Filter.and, ee.Filter.neq, ee.Filter.inList, ee.Filter.lt, ee.Function.prototype.apply, ee.Function.prototype.call, ee.Geometry, ee.Geometry.MultiPoint, ee.Geometry.LineString, ee.Geometry.MultiPolygon, ee.Geometry.BBox, ee.Geometry.Rectangle, ee.Geometry.Point, ee.Geometry.Polygon, ee.Geometry.prototype.toGeoJSON, ee.Geometry.LinearRing, ee.Geometry.MultiLineString, ee.Geometry.prototype.toGeoJSONString, ee.Geometry.prototype.serialize,
26981
- ee.Image.prototype.getDownloadURL, ee.Image.prototype.getThumbURL, ee.Image.prototype.select, ee.Image.prototype.getMap, ee.Image.prototype.getThumbId, ee.Image.rgb, ee.Image.prototype.rename, ee.Image.cat, ee.Image.prototype.clip, ee.Image.prototype.getMapId, ee.Image, ee.Image.prototype.expression, ee.Image.prototype.getInfo, ee.ImageCollection, ee.ImageCollection.prototype.getFilmstripThumbURL, ee.ImageCollection.prototype.first, ee.ImageCollection.prototype.getMap, ee.ImageCollection.prototype.getInfo,
26982
- ee.ImageCollection.prototype.select, ee.ImageCollection.prototype.linkCollection, ee.ImageCollection.prototype.getVideoThumbURL, ee.ImageCollection.prototype.getMapId, ee.List, ee.Number, ee.Serializer.encode, ee.Serializer.encodeCloudApiPretty, ee.Serializer.toJSON, ee.Serializer.encodeCloudApi, ee.Serializer.toCloudApiJSON, ee.Serializer.toReadableJSON, ee.Serializer.toReadableCloudApiJSON, ee.String, ee.Terrain].forEach(function(fn, i) {
26839
+ var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction._call ee.ApiFunction.lookup ee.ApiFunction._apply ee.batch.Export.table.toAsset ee.batch.Export.image.toDrive ee.batch.Export.table.toCloudStorage ee.batch.Export.classifier.toAsset ee.batch.Export.image.toAsset ee.batch.Export.map.toCloudStorage ee.batch.Export.videoMap.toCloudStorage ee.batch.Export.table.toBigQuery ee.batch.Export.image.toCloudStorage ee.batch.Export.video.toCloudStorage ee.batch.Export.table.toFeatureView ee.batch.Export.video.toDrive ee.batch.Export.table.toDrive ee.Collection.prototype.map ee.Collection.prototype.iterate ee.Collection.prototype.filterBounds ee.Collection.prototype.filterMetadata ee.Collection.prototype.filterDate ee.Collection.prototype.sort ee.Collection.prototype.limit ee.Collection.prototype.filter ee.ComputedObject.prototype.serialize ee.ComputedObject.prototype.aside ee.ComputedObject.prototype.evaluate ee.ComputedObject.prototype.getInfo ee.data.authenticateViaPrivateKey ee.data.newTaskId ee.data.updateAsset ee.data.computeValue ee.data.cancelTask ee.data.getList ee.data.getThumbId ee.data.createFolder ee.data.startIngestion ee.data.setAssetAcl ee.data.getVideoThumbId ee.data.updateTask ee.data.getTaskStatus ee.data.renameAsset ee.data.listBuckets ee.data.getFilmstripThumbId ee.data.startProcessing ee.data.listAssets ee.data.makeThumbUrl ee.data.getMapId ee.data.setAssetProperties ee.data.authenticateViaOauth ee.data.copyAsset ee.data.deleteAsset ee.data.getAssetRootQuota ee.data.getTaskList ee.data.startTableIngestion ee.data.getOperation ee.data.authenticate ee.data.getTileUrl ee.data.getTableDownloadId ee.data.setWorkloadTag ee.data.getAssetAcl ee.data.getWorkloadTag ee.data.getTaskListWithLimit ee.data.listImages ee.data.makeTableDownloadUrl ee.data.listOperations ee.data.getAssetRoots ee.data.getDownloadId ee.data.getAsset ee.data.cancelOperation ee.data.authenticateViaPopup ee.data.makeDownloadUrl ee.data.getFeatureViewTilesKey ee.data.createAssetHome ee.data.listFeatures ee.data.getInfo ee.data.createAsset ee.data.setDefaultWorkloadTag ee.data.resetWorkloadTag ee.Date ee.Deserializer.decode ee.Deserializer.decodeCloudApi ee.Deserializer.fromJSON ee.Deserializer.fromCloudApiJSON ee.Dictionary ee.Algorithms ee.InitState ee.apply ee.TILE_SIZE ee.initialize ee.reset ee.call ee.Element.prototype.set ee.Encodable.SourceFrame ee.Feature ee.Feature.prototype.getInfo ee.Feature.prototype.getMapId ee.Feature.prototype.getMap ee.FeatureCollection.prototype.getInfo ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection ee.FeatureCollection.prototype.getMap ee.FeatureCollection.prototype.select ee.FeatureCollection.prototype.getMapId ee.Filter ee.Filter.metadata ee.Filter.eq ee.Filter.date ee.Filter.bounds ee.Filter.and ee.Filter.gt ee.Filter.inList ee.Filter.prototype.not ee.Filter.lt ee.Filter.neq ee.Filter.or ee.Filter.lte ee.Filter.gte ee.Function.prototype.call ee.Function.prototype.apply ee.Geometry.Polygon ee.Geometry.MultiPolygon ee.Geometry.prototype.serialize ee.Geometry.MultiLineString ee.Geometry.prototype.toGeoJSON ee.Geometry ee.Geometry.MultiPoint ee.Geometry.BBox ee.Geometry.Rectangle ee.Geometry.prototype.toGeoJSONString ee.Geometry.LinearRing ee.Geometry.LineString ee.Geometry.Point ee.Image.prototype.getMapId ee.Image.prototype.getMap ee.Image.prototype.getDownloadURL ee.Image.prototype.expression ee.Image.prototype.rename ee.Image.prototype.getThumbId ee.Image.prototype.getThumbURL ee.Image ee.Image.rgb ee.Image.cat ee.Image.prototype.select ee.Image.prototype.clip ee.Image.prototype.getInfo ee.ImageCollection.prototype.linkCollection ee.ImageCollection.prototype.first ee.ImageCollection ee.ImageCollection.prototype.getInfo ee.ImageCollection.prototype.select ee.ImageCollection.prototype.getVideoThumbURL ee.ImageCollection.prototype.getMap ee.ImageCollection.prototype.getMapId ee.ImageCollection.prototype.getFilmstripThumbURL ee.List ee.Number ee.Serializer.toReadableJSON ee.Serializer.toReadableCloudApiJSON ee.Serializer.encodeCloudApiPretty ee.Serializer.encodeCloudApi ee.Serializer.encode ee.Serializer.toJSON ee.Serializer.toCloudApiJSON ee.String ee.Terrain".split(" "),
26840
+ orderedParamLists = [["name", "var_args"], ["name"], ["name", "namedArgs"], ["collection", "opt_description", "opt_assetId", "opt_maxVertices", "opt_priority"], "image opt_description opt_folder opt_fileNamePrefix opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_fileDimensions opt_skipEmptyTiles opt_fileFormat opt_formatOptions opt_priority".split(" "), "collection opt_description opt_bucket opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices opt_priority".split(" "),
26841
+ ["classifier", "opt_description", "opt_assetId", "opt_priority"], "image opt_description opt_assetId opt_pyramidingPolicy opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_priority".split(" "), "image opt_description opt_bucket opt_fileFormat opt_path opt_writePublicTiles opt_scale opt_maxZoom opt_minZoom opt_region opt_skipEmptyTiles opt_mapsApiKey opt_bucketCorsUris opt_priority".split(" "), "collection opt_description opt_bucket opt_fileNamePrefix opt_framesPerSecond opt_writePublicTiles opt_minZoom opt_maxZoom opt_scale opt_region opt_skipEmptyTiles opt_minTimeMachineZoomSubset opt_maxTimeMachineZoomSubset opt_tileWidth opt_tileHeight opt_tileStride opt_videoFormat opt_version opt_mapsApiKey opt_bucketCorsUris opt_priority".split(" "),
26842
+ "collection opt_description opt_table opt_overwrite opt_append opt_selectors opt_maxVertices opt_priority".split(" "), "image opt_description opt_bucket opt_fileNamePrefix opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_fileDimensions opt_skipEmptyTiles opt_fileFormat opt_formatOptions opt_priority".split(" "), "collection opt_description opt_bucket opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames opt_priority".split(" "),
26843
+ "collection opt_description opt_assetId opt_maxFeaturesPerTile opt_thinningStrategy opt_thinningRanking opt_zOrderRanking opt_priority".split(" "), "collection opt_description opt_folder opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames opt_priority".split(" "), "collection opt_description opt_folder opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices opt_priority".split(" "), ["algorithm", "opt_dropNulls"],
26844
+ ["algorithm", "opt_first"], ["geometry"], ["name", "operator", "value"], ["start", "opt_end"], ["property", "opt_ascending"], ["max", "opt_property", "opt_ascending"], ["filter"], ["legacy"], ["func", "var_args"], ["callback"], ["opt_callback"], ["privateKey", "opt_success", "opt_error", "opt_extraScopes", "opt_suppressDefaultScopes"], ["opt_count", "opt_callback"], ["assetId", "asset", "updateFields", "opt_callback"], ["obj", "opt_callback"], ["taskId", "opt_callback"], ["params", "opt_callback"],
26845
+ ["params", "opt_callback"], ["path", "opt_force", "opt_callback"], ["taskId", "request", "opt_callback"], ["assetId", "aclUpdate", "opt_callback"], ["params", "opt_callback"], ["taskId", "action", "opt_callback"], ["taskId", "opt_callback"], ["sourceId", "destinationId", "opt_callback"], ["project", "opt_callback"], ["params", "opt_callback"], ["taskId", "params", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["id"], ["params", "opt_callback"], ["assetId", "properties", "opt_callback"],
26846
+ "clientId success opt_error opt_extraScopes opt_onImmediateFailed opt_suppressDefaultScopes".split(" "), ["sourceId", "destinationId", "opt_overwrite", "opt_callback"], ["assetId", "opt_callback"], ["rootId", "opt_callback"], ["opt_callback"], ["taskId", "request", "opt_callback"], ["operationName", "opt_callback"], ["clientId", "success", "opt_error", "opt_extraScopes", "opt_onImmediateFailed"], ["id", "x", "y", "z"], ["params", "opt_callback"], ["tag"], ["assetId", "opt_callback"], [], ["opt_limit",
26847
+ "opt_callback"], ["parent", "opt_params", "opt_callback"], ["id"], ["opt_limit", "opt_callback"], ["opt_callback"], ["params", "opt_callback"], ["id", "opt_callback"], ["operationName", "opt_callback"], ["opt_success", "opt_error"], ["id"], ["params", "opt_callback"], ["requestedId", "opt_callback"], ["asset", "params", "opt_callback"], ["id", "opt_callback"], ["value", "opt_path", "opt_force", "opt_properties", "opt_callback"], ["tag"], ["opt_resetDefault"], ["date", "opt_tz"], ["json"], ["json"],
26848
+ ["json"], ["json"], ["opt_dict"], [], [], ["func", "namedArgs"], [], "opt_baseurl opt_tileurl opt_successCallback opt_errorCallback opt_xsrfToken opt_project".split(" "), [], ["func", "var_args"], ["var_args"], [], ["geometry", "opt_properties"], ["opt_callback"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"], ["opt_callback"], ["opt_format", "opt_selectors", "opt_filename", "opt_callback"], ["args", "opt_column"], ["opt_visParams", "opt_callback"], ["propertySelectors",
26849
+ "opt_newProperties", "opt_retainGeometry"], ["opt_visParams", "opt_callback"], ["opt_filter"], ["name", "operator", "value"], ["name", "value"], ["start", "opt_end"], ["geometry", "opt_errorMargin"], ["var_args"], ["name", "value"], ["opt_leftField", "opt_rightValue", "opt_rightField", "opt_leftValue"], [], ["name", "value"], ["name", "value"], ["var_args"], ["name", "value"], ["name", "value"], ["var_args"], ["namedArgs"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"],
26850
+ ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["legacy"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], [], ["geoJson", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj"], ["west", "south", "east", "north"], ["coords", "opt_proj", "opt_geodesic", "opt_evenOdd"], [], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj"], ["opt_visParams", "opt_callback"], ["opt_visParams",
26851
+ "opt_callback"], ["params", "opt_callback"], ["expression", "opt_map"], ["var_args"], ["params", "opt_callback"], ["params", "opt_callback"], ["opt_args"], ["r", "g", "b"], ["var_args"], ["var_args"], ["geometry"], ["opt_callback"], ["imageCollection", "opt_linkedBands", "opt_linkedProperties", "opt_matchPropertyName"], [], ["args"], ["opt_callback"], ["selectors", "opt_names"], ["params", "opt_callback"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"],
26852
+ ["list"], ["number"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj", "opt_isCompound"], ["obj"], ["obj"], ["string"], []];
26853
+ [ee.ApiFunction._call, ee.ApiFunction.lookup, ee.ApiFunction._apply, module$contents$ee$batch_Export.table.toAsset, module$contents$ee$batch_Export.image.toDrive, module$contents$ee$batch_Export.table.toCloudStorage, module$contents$ee$batch_Export.classifier.toAsset, module$contents$ee$batch_Export.image.toAsset, module$contents$ee$batch_Export.map.toCloudStorage, module$contents$ee$batch_Export.videoMap.toCloudStorage, module$contents$ee$batch_Export.table.toBigQuery, module$contents$ee$batch_Export.image.toCloudStorage,
26854
+ module$contents$ee$batch_Export.video.toCloudStorage, module$contents$ee$batch_Export.table.toFeatureView, module$contents$ee$batch_Export.video.toDrive, module$contents$ee$batch_Export.table.toDrive, ee.Collection.prototype.map, ee.Collection.prototype.iterate, ee.Collection.prototype.filterBounds, ee.Collection.prototype.filterMetadata, ee.Collection.prototype.filterDate, ee.Collection.prototype.sort, ee.Collection.prototype.limit, ee.Collection.prototype.filter, ee.ComputedObject.prototype.serialize,
26855
+ ee.ComputedObject.prototype.aside, ee.ComputedObject.prototype.evaluate, ee.ComputedObject.prototype.getInfo, ee.data.authenticateViaPrivateKey, ee.data.newTaskId, ee.data.updateAsset, ee.data.computeValue, ee.data.cancelTask, ee.data.getList, ee.data.getThumbId, ee.data.createFolder, ee.data.startIngestion, ee.data.setAssetAcl, ee.data.getVideoThumbId, ee.data.updateTask, ee.data.getTaskStatus, ee.data.renameAsset, ee.data.listBuckets, ee.data.getFilmstripThumbId, ee.data.startProcessing, ee.data.listAssets,
26856
+ ee.data.makeThumbUrl, ee.data.getMapId, ee.data.setAssetProperties, ee.data.authenticateViaOauth, ee.data.copyAsset, ee.data.deleteAsset, ee.data.getAssetRootQuota, ee.data.getTaskList, ee.data.startTableIngestion, ee.data.getOperation, ee.data.authenticate, ee.data.getTileUrl, ee.data.getTableDownloadId, ee.data.setWorkloadTag, ee.data.getAssetAcl, ee.data.getWorkloadTag, ee.data.getTaskListWithLimit, ee.data.listImages, ee.data.makeTableDownloadUrl, ee.data.listOperations, ee.data.getAssetRoots,
26857
+ ee.data.getDownloadId, ee.data.getAsset, ee.data.cancelOperation, ee.data.authenticateViaPopup, ee.data.makeDownloadUrl, ee.data.getFeatureViewTilesKey, ee.data.createAssetHome, ee.data.listFeatures, ee.data.getInfo, ee.data.createAsset, ee.data.setDefaultWorkloadTag, ee.data.resetWorkloadTag, ee.Date, ee.Deserializer.decode, ee.Deserializer.decodeCloudApi, ee.Deserializer.fromJSON, ee.Deserializer.fromCloudApiJSON, ee.Dictionary, ee.Algorithms, ee.InitState, ee.apply, ee.TILE_SIZE, ee.initialize,
26858
+ ee.reset, ee.call, ee.Element.prototype.set, ee.Encodable.SourceFrame, ee.Feature, ee.Feature.prototype.getInfo, ee.Feature.prototype.getMapId, ee.Feature.prototype.getMap, ee.FeatureCollection.prototype.getInfo, ee.FeatureCollection.prototype.getDownloadURL, ee.FeatureCollection, ee.FeatureCollection.prototype.getMap, ee.FeatureCollection.prototype.select, ee.FeatureCollection.prototype.getMapId, ee.Filter, ee.Filter.metadata, ee.Filter.eq, ee.Filter.date, ee.Filter.bounds, ee.Filter.and, ee.Filter.gt,
26859
+ ee.Filter.inList, ee.Filter.prototype.not, ee.Filter.lt, ee.Filter.neq, ee.Filter.or, ee.Filter.lte, ee.Filter.gte, ee.Function.prototype.call, ee.Function.prototype.apply, ee.Geometry.Polygon, ee.Geometry.MultiPolygon, ee.Geometry.prototype.serialize, ee.Geometry.MultiLineString, ee.Geometry.prototype.toGeoJSON, ee.Geometry, ee.Geometry.MultiPoint, ee.Geometry.BBox, ee.Geometry.Rectangle, ee.Geometry.prototype.toGeoJSONString, ee.Geometry.LinearRing, ee.Geometry.LineString, ee.Geometry.Point,
26860
+ ee.Image.prototype.getMapId, ee.Image.prototype.getMap, ee.Image.prototype.getDownloadURL, ee.Image.prototype.expression, ee.Image.prototype.rename, ee.Image.prototype.getThumbId, ee.Image.prototype.getThumbURL, ee.Image, ee.Image.rgb, ee.Image.cat, ee.Image.prototype.select, ee.Image.prototype.clip, ee.Image.prototype.getInfo, ee.ImageCollection.prototype.linkCollection, ee.ImageCollection.prototype.first, ee.ImageCollection, ee.ImageCollection.prototype.getInfo, ee.ImageCollection.prototype.select,
26861
+ ee.ImageCollection.prototype.getVideoThumbURL, ee.ImageCollection.prototype.getMap, ee.ImageCollection.prototype.getMapId, ee.ImageCollection.prototype.getFilmstripThumbURL, ee.List, ee.Number, ee.Serializer.toReadableJSON, ee.Serializer.toReadableCloudApiJSON, ee.Serializer.encodeCloudApiPretty, ee.Serializer.encodeCloudApi, ee.Serializer.encode, ee.Serializer.toJSON, ee.Serializer.toCloudApiJSON, ee.String, ee.Terrain].forEach(function(fn, i) {
26983
26862
  fn && (exportedFnInfo[fn.toString()] = {name:orderedFnNames[i], paramNames:orderedParamLists[i]});
26984
26863
  });
26985
26864
  goog.global.EXPORTED_FN_INFO = exportedFnInfo;