msw 2.12.2 → 2.12.3

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.
Files changed (59) hide show
  1. package/lib/core/{HttpResponse-BpT5A_2L.d.ts → HttpResponse-DC89RDb7.d.ts} +1 -1
  2. package/lib/core/{HttpResponse-DGUjNQHG.d.mts → HttpResponse-U6SfxBlj.d.mts} +1 -1
  3. package/lib/core/HttpResponse.d.mts +1 -1
  4. package/lib/core/HttpResponse.d.ts +1 -1
  5. package/lib/core/SetupApi.d.mts +1 -1
  6. package/lib/core/SetupApi.d.ts +1 -1
  7. package/lib/core/getResponse.d.mts +1 -1
  8. package/lib/core/getResponse.d.ts +1 -1
  9. package/lib/core/graphql.d.mts +1 -1
  10. package/lib/core/graphql.d.ts +1 -1
  11. package/lib/core/handlers/GraphQLHandler.d.mts +1 -1
  12. package/lib/core/handlers/GraphQLHandler.d.ts +1 -1
  13. package/lib/core/handlers/HttpHandler.d.mts +2 -2
  14. package/lib/core/handlers/HttpHandler.d.ts +2 -2
  15. package/lib/core/handlers/HttpHandler.js.map +1 -1
  16. package/lib/core/handlers/HttpHandler.mjs.map +1 -1
  17. package/lib/core/handlers/RequestHandler.d.mts +1 -1
  18. package/lib/core/handlers/RequestHandler.d.ts +1 -1
  19. package/lib/core/http.d.mts +1 -1
  20. package/lib/core/http.d.ts +1 -1
  21. package/lib/core/index.d.mts +2 -2
  22. package/lib/core/index.d.ts +2 -2
  23. package/lib/core/index.js.map +1 -1
  24. package/lib/core/index.mjs.map +1 -1
  25. package/lib/core/passthrough.d.mts +1 -1
  26. package/lib/core/passthrough.d.ts +1 -1
  27. package/lib/core/sse.d.mts +1 -1
  28. package/lib/core/sse.d.ts +1 -1
  29. package/lib/core/utils/HttpResponse/decorators.d.mts +1 -1
  30. package/lib/core/utils/HttpResponse/decorators.d.ts +1 -1
  31. package/lib/core/utils/executeHandlers.d.mts +1 -1
  32. package/lib/core/utils/executeHandlers.d.ts +1 -1
  33. package/lib/core/utils/handleRequest.d.mts +1 -1
  34. package/lib/core/utils/handleRequest.d.ts +1 -1
  35. package/lib/core/utils/internal/isHandlerKind.d.mts +1 -1
  36. package/lib/core/utils/internal/isHandlerKind.d.ts +1 -1
  37. package/lib/core/utils/internal/parseGraphQLRequest.d.mts +1 -1
  38. package/lib/core/utils/internal/parseGraphQLRequest.d.ts +1 -1
  39. package/lib/core/utils/internal/parseMultipartData.d.mts +1 -1
  40. package/lib/core/utils/internal/parseMultipartData.d.ts +1 -1
  41. package/lib/core/utils/internal/requestHandlerUtils.d.mts +1 -1
  42. package/lib/core/utils/internal/requestHandlerUtils.d.ts +1 -1
  43. package/lib/core/utils/request/toPublicUrl.js +4 -4
  44. package/lib/core/utils/request/toPublicUrl.js.map +1 -1
  45. package/lib/core/utils/request/toPublicUrl.mjs +4 -4
  46. package/lib/core/utils/request/toPublicUrl.mjs.map +1 -1
  47. package/lib/core/ws/handleWebSocketEvent.d.mts +1 -1
  48. package/lib/core/ws/handleWebSocketEvent.d.ts +1 -1
  49. package/lib/iife/index.js +985 -337
  50. package/lib/iife/index.js.map +1 -1
  51. package/lib/mockServiceWorker.js +1 -1
  52. package/lib/node/index.mjs +1 -1
  53. package/package.json +34 -37
  54. package/src/core/handlers/HttpHandler.ts +1 -1
  55. package/src/core/index.ts +5 -0
  56. package/src/core/utils/request/onUnhandledRequest.node.test.ts +62 -0
  57. package/src/core/utils/request/toPublicUrl.node.test.ts +17 -0
  58. package/src/core/utils/request/toPublicUrl.test.ts +1 -3
  59. package/src/core/utils/request/toPublicUrl.ts +8 -7
package/lib/iife/index.js CHANGED
@@ -335,22 +335,22 @@ var MockServiceWorker = (() => {
335
335
  }
336
336
  });
337
337
 
338
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/version.mjs
338
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/version.mjs
339
339
  var version2, versionInfo;
340
340
  var init_version = __esm({
341
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/version.mjs"() {
341
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/version.mjs"() {
342
342
  "use strict";
343
- version2 = "16.8.2";
343
+ version2 = "16.12.0";
344
344
  versionInfo = Object.freeze({
345
345
  major: 16,
346
- minor: 8,
347
- patch: 2,
346
+ minor: 12,
347
+ patch: 0,
348
348
  preReleaseTag: null
349
349
  });
350
350
  }
351
351
  });
352
352
 
353
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/jsutils/devAssert.mjs
353
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/jsutils/devAssert.mjs
354
354
  function devAssert(condition, message4) {
355
355
  const booleanCondition = Boolean(condition);
356
356
  if (!booleanCondition) {
@@ -358,32 +358,32 @@ var MockServiceWorker = (() => {
358
358
  }
359
359
  }
360
360
  var init_devAssert = __esm({
361
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/jsutils/devAssert.mjs"() {
361
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/jsutils/devAssert.mjs"() {
362
362
  "use strict";
363
363
  }
364
364
  });
365
365
 
366
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/jsutils/isPromise.mjs
366
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/jsutils/isPromise.mjs
367
367
  function isPromise(value) {
368
368
  return typeof (value === null || value === void 0 ? void 0 : value.then) === "function";
369
369
  }
370
370
  var init_isPromise = __esm({
371
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/jsutils/isPromise.mjs"() {
371
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/jsutils/isPromise.mjs"() {
372
372
  "use strict";
373
373
  }
374
374
  });
375
375
 
376
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/jsutils/isObjectLike.mjs
376
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/jsutils/isObjectLike.mjs
377
377
  function isObjectLike(value) {
378
378
  return typeof value == "object" && value !== null;
379
379
  }
380
380
  var init_isObjectLike = __esm({
381
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/jsutils/isObjectLike.mjs"() {
381
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/jsutils/isObjectLike.mjs"() {
382
382
  "use strict";
383
383
  }
384
384
  });
385
385
 
386
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/jsutils/invariant.mjs
386
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/jsutils/invariant.mjs
387
387
  function invariant2(condition, message4) {
388
388
  const booleanCondition = Boolean(condition);
389
389
  if (!booleanCondition) {
@@ -393,12 +393,12 @@ var MockServiceWorker = (() => {
393
393
  }
394
394
  }
395
395
  var init_invariant = __esm({
396
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/jsutils/invariant.mjs"() {
396
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/jsutils/invariant.mjs"() {
397
397
  "use strict";
398
398
  }
399
399
  });
400
400
 
401
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/language/location.mjs
401
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/language/location.mjs
402
402
  function getLocation(source, position) {
403
403
  let lastLineStart = 0;
404
404
  let line = 1;
@@ -417,14 +417,14 @@ var MockServiceWorker = (() => {
417
417
  }
418
418
  var LineRegExp;
419
419
  var init_location = __esm({
420
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/language/location.mjs"() {
420
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/language/location.mjs"() {
421
421
  "use strict";
422
422
  init_invariant();
423
423
  LineRegExp = /\r\n|[\n\r]/g;
424
424
  }
425
425
  });
426
426
 
427
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/language/printLocation.mjs
427
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/language/printLocation.mjs
428
428
  function printLocation(location2) {
429
429
  return printSourceLocation(
430
430
  location2.source,
@@ -471,13 +471,13 @@ var MockServiceWorker = (() => {
471
471
  return existingLines.map(([prefix, line]) => prefix.padStart(padLen) + (line ? " " + line : "")).join("\n");
472
472
  }
473
473
  var init_printLocation = __esm({
474
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/language/printLocation.mjs"() {
474
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/language/printLocation.mjs"() {
475
475
  "use strict";
476
476
  init_location();
477
477
  }
478
478
  });
479
479
 
480
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/error/GraphQLError.mjs
480
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/error/GraphQLError.mjs
481
481
  function toNormalizedOptions(args) {
482
482
  const firstArg = args[0];
483
483
  if (firstArg == null || "kind" in firstArg || "length" in firstArg) {
@@ -503,7 +503,7 @@ var MockServiceWorker = (() => {
503
503
  }
504
504
  var GraphQLError;
505
505
  var init_GraphQLError = __esm({
506
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/error/GraphQLError.mjs"() {
506
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/error/GraphQLError.mjs"() {
507
507
  "use strict";
508
508
  init_isObjectLike();
509
509
  init_location();
@@ -641,7 +641,7 @@ var MockServiceWorker = (() => {
641
641
  }
642
642
  });
643
643
 
644
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/error/syntaxError.mjs
644
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/error/syntaxError.mjs
645
645
  function syntaxError(source, position, description) {
646
646
  return new GraphQLError(`Syntax Error: ${description}`, {
647
647
  source,
@@ -649,20 +649,20 @@ var MockServiceWorker = (() => {
649
649
  });
650
650
  }
651
651
  var init_syntaxError = __esm({
652
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/error/syntaxError.mjs"() {
652
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/error/syntaxError.mjs"() {
653
653
  "use strict";
654
654
  init_GraphQLError();
655
655
  }
656
656
  });
657
657
 
658
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/language/ast.mjs
658
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/language/ast.mjs
659
659
  function isNode(maybeNode) {
660
660
  const maybeKind = maybeNode === null || maybeNode === void 0 ? void 0 : maybeNode.kind;
661
661
  return typeof maybeKind === "string" && kindValues.has(maybeKind);
662
662
  }
663
663
  var Location, Token, QueryDocumentKeys, kindValues, OperationTypeNode;
664
664
  var init_ast = __esm({
665
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/language/ast.mjs"() {
665
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/language/ast.mjs"() {
666
666
  "use strict";
667
667
  Location = class {
668
668
  /**
@@ -750,12 +750,19 @@ var MockServiceWorker = (() => {
750
750
  Name: [],
751
751
  Document: ["definitions"],
752
752
  OperationDefinition: [
753
+ "description",
753
754
  "name",
754
755
  "variableDefinitions",
755
756
  "directives",
756
757
  "selectionSet"
757
758
  ],
758
- VariableDefinition: ["variable", "type", "defaultValue", "directives"],
759
+ VariableDefinition: [
760
+ "description",
761
+ "variable",
762
+ "type",
763
+ "defaultValue",
764
+ "directives"
765
+ ],
759
766
  Variable: ["name"],
760
767
  SelectionSet: ["selections"],
761
768
  Field: ["alias", "name", "arguments", "directives", "selectionSet"],
@@ -763,6 +770,7 @@ var MockServiceWorker = (() => {
763
770
  FragmentSpread: ["name", "directives"],
764
771
  InlineFragment: ["typeCondition", "directives", "selectionSet"],
765
772
  FragmentDefinition: [
773
+ "description",
766
774
  "name",
767
775
  // Note: fragment variable definitions are deprecated and will removed in v17.0.0
768
776
  "variableDefinitions",
@@ -819,7 +827,12 @@ var MockServiceWorker = (() => {
819
827
  InterfaceTypeExtension: ["name", "interfaces", "directives", "fields"],
820
828
  UnionTypeExtension: ["name", "directives", "types"],
821
829
  EnumTypeExtension: ["name", "directives", "values"],
822
- InputObjectTypeExtension: ["name", "directives", "fields"]
830
+ InputObjectTypeExtension: ["name", "directives", "fields"],
831
+ TypeCoordinate: ["name"],
832
+ MemberCoordinate: ["name", "memberName"],
833
+ ArgumentCoordinate: ["name", "fieldName", "argumentName"],
834
+ DirectiveCoordinate: ["name"],
835
+ DirectiveArgumentCoordinate: ["name", "argumentName"]
823
836
  };
824
837
  kindValues = new Set(Object.keys(QueryDocumentKeys));
825
838
  (function(OperationTypeNode2) {
@@ -830,10 +843,10 @@ var MockServiceWorker = (() => {
830
843
  }
831
844
  });
832
845
 
833
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/language/directiveLocation.mjs
846
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/language/directiveLocation.mjs
834
847
  var DirectiveLocation;
835
848
  var init_directiveLocation = __esm({
836
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/language/directiveLocation.mjs"() {
849
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/language/directiveLocation.mjs"() {
837
850
  "use strict";
838
851
  (function(DirectiveLocation2) {
839
852
  DirectiveLocation2["QUERY"] = "QUERY";
@@ -859,10 +872,10 @@ var MockServiceWorker = (() => {
859
872
  }
860
873
  });
861
874
 
862
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/language/kinds.mjs
875
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/language/kinds.mjs
863
876
  var Kind;
864
877
  var init_kinds = __esm({
865
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/language/kinds.mjs"() {
878
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/language/kinds.mjs"() {
866
879
  "use strict";
867
880
  (function(Kind2) {
868
881
  Kind2["NAME"] = "Name";
@@ -908,11 +921,16 @@ var MockServiceWorker = (() => {
908
921
  Kind2["UNION_TYPE_EXTENSION"] = "UnionTypeExtension";
909
922
  Kind2["ENUM_TYPE_EXTENSION"] = "EnumTypeExtension";
910
923
  Kind2["INPUT_OBJECT_TYPE_EXTENSION"] = "InputObjectTypeExtension";
924
+ Kind2["TYPE_COORDINATE"] = "TypeCoordinate";
925
+ Kind2["MEMBER_COORDINATE"] = "MemberCoordinate";
926
+ Kind2["ARGUMENT_COORDINATE"] = "ArgumentCoordinate";
927
+ Kind2["DIRECTIVE_COORDINATE"] = "DirectiveCoordinate";
928
+ Kind2["DIRECTIVE_ARGUMENT_COORDINATE"] = "DirectiveArgumentCoordinate";
911
929
  })(Kind || (Kind = {}));
912
930
  }
913
931
  });
914
932
 
915
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/language/characterClasses.mjs
933
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/language/characterClasses.mjs
916
934
  function isWhiteSpace(code) {
917
935
  return code === 9 || code === 32;
918
936
  }
@@ -930,12 +948,12 @@ var MockServiceWorker = (() => {
930
948
  return isLetter(code) || isDigit(code) || code === 95;
931
949
  }
932
950
  var init_characterClasses = __esm({
933
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/language/characterClasses.mjs"() {
951
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/language/characterClasses.mjs"() {
934
952
  "use strict";
935
953
  }
936
954
  });
937
955
 
938
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/language/blockString.mjs
956
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/language/blockString.mjs
939
957
  function dedentBlockStringLines(lines) {
940
958
  var _firstNonEmptyLine2;
941
959
  let commonIndent = Number.MAX_SAFE_INTEGER;
@@ -1043,16 +1061,16 @@ var MockServiceWorker = (() => {
1043
1061
  return '"""' + result + '"""';
1044
1062
  }
1045
1063
  var init_blockString = __esm({
1046
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/language/blockString.mjs"() {
1064
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/language/blockString.mjs"() {
1047
1065
  "use strict";
1048
1066
  init_characterClasses();
1049
1067
  }
1050
1068
  });
1051
1069
 
1052
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/language/tokenKind.mjs
1070
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/language/tokenKind.mjs
1053
1071
  var TokenKind;
1054
1072
  var init_tokenKind = __esm({
1055
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/language/tokenKind.mjs"() {
1073
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/language/tokenKind.mjs"() {
1056
1074
  "use strict";
1057
1075
  (function(TokenKind2) {
1058
1076
  TokenKind2["SOF"] = "<SOF>";
@@ -1062,6 +1080,7 @@ var MockServiceWorker = (() => {
1062
1080
  TokenKind2["AMP"] = "&";
1063
1081
  TokenKind2["PAREN_L"] = "(";
1064
1082
  TokenKind2["PAREN_R"] = ")";
1083
+ TokenKind2["DOT"] = ".";
1065
1084
  TokenKind2["SPREAD"] = "...";
1066
1085
  TokenKind2["COLON"] = ":";
1067
1086
  TokenKind2["EQUALS"] = "=";
@@ -1081,9 +1100,9 @@ var MockServiceWorker = (() => {
1081
1100
  }
1082
1101
  });
1083
1102
 
1084
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/language/lexer.mjs
1103
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/language/lexer.mjs
1085
1104
  function isPunctuatorTokenKind(kind) {
1086
- return kind === TokenKind.BANG || kind === TokenKind.DOLLAR || kind === TokenKind.AMP || kind === TokenKind.PAREN_L || kind === TokenKind.PAREN_R || kind === TokenKind.SPREAD || kind === TokenKind.COLON || kind === TokenKind.EQUALS || kind === TokenKind.AT || kind === TokenKind.BRACKET_L || kind === TokenKind.BRACKET_R || kind === TokenKind.BRACE_L || kind === TokenKind.PIPE || kind === TokenKind.BRACE_R;
1105
+ return kind === TokenKind.BANG || kind === TokenKind.DOLLAR || kind === TokenKind.AMP || kind === TokenKind.PAREN_L || kind === TokenKind.PAREN_R || kind === TokenKind.DOT || kind === TokenKind.SPREAD || kind === TokenKind.COLON || kind === TokenKind.EQUALS || kind === TokenKind.AT || kind === TokenKind.BRACKET_L || kind === TokenKind.BRACKET_R || kind === TokenKind.BRACE_L || kind === TokenKind.PIPE || kind === TokenKind.BRACE_R;
1087
1106
  }
1088
1107
  function isUnicodeScalarValue(code) {
1089
1108
  return code >= 0 && code <= 55295 || code >= 57344 && code <= 1114111;
@@ -1561,7 +1580,7 @@ var MockServiceWorker = (() => {
1561
1580
  }
1562
1581
  var Lexer;
1563
1582
  var init_lexer = __esm({
1564
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/language/lexer.mjs"() {
1583
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/language/lexer.mjs"() {
1565
1584
  "use strict";
1566
1585
  init_syntaxError();
1567
1586
  init_ast();
@@ -1624,7 +1643,98 @@ var MockServiceWorker = (() => {
1624
1643
  }
1625
1644
  });
1626
1645
 
1627
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/jsutils/inspect.mjs
1646
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/language/schemaCoordinateLexer.mjs
1647
+ function readNextToken2(lexer2, start) {
1648
+ const body = lexer2.source.body;
1649
+ const bodyLength = body.length;
1650
+ const position = start;
1651
+ if (position < bodyLength) {
1652
+ const code = body.charCodeAt(position);
1653
+ switch (code) {
1654
+ case 46:
1655
+ return createToken(lexer2, TokenKind.DOT, position, position + 1);
1656
+ case 40:
1657
+ return createToken(lexer2, TokenKind.PAREN_L, position, position + 1);
1658
+ case 41:
1659
+ return createToken(lexer2, TokenKind.PAREN_R, position, position + 1);
1660
+ case 58:
1661
+ return createToken(lexer2, TokenKind.COLON, position, position + 1);
1662
+ case 64:
1663
+ return createToken(lexer2, TokenKind.AT, position, position + 1);
1664
+ }
1665
+ if (isNameStart(code)) {
1666
+ return readName(lexer2, position);
1667
+ }
1668
+ throw syntaxError(
1669
+ lexer2.source,
1670
+ position,
1671
+ `Invalid character: ${printCodePointAt(lexer2, position)}.`
1672
+ );
1673
+ }
1674
+ return createToken(lexer2, TokenKind.EOF, bodyLength, bodyLength);
1675
+ }
1676
+ var SchemaCoordinateLexer;
1677
+ var init_schemaCoordinateLexer = __esm({
1678
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/language/schemaCoordinateLexer.mjs"() {
1679
+ "use strict";
1680
+ init_syntaxError();
1681
+ init_ast();
1682
+ init_characterClasses();
1683
+ init_lexer();
1684
+ init_tokenKind();
1685
+ SchemaCoordinateLexer = class {
1686
+ /**
1687
+ * The previously focused non-ignored token.
1688
+ */
1689
+ /**
1690
+ * The currently focused non-ignored token.
1691
+ */
1692
+ /**
1693
+ * The (1-indexed) line containing the current token.
1694
+ * Since a schema coordinate may not contain newline, this value is always 1.
1695
+ */
1696
+ line = 1;
1697
+ /**
1698
+ * The character offset at which the current line begins.
1699
+ * Since a schema coordinate may not contain newline, this value is always 0.
1700
+ */
1701
+ lineStart = 0;
1702
+ constructor(source) {
1703
+ const startOfFileToken = new Token(TokenKind.SOF, 0, 0, 0, 0);
1704
+ this.source = source;
1705
+ this.lastToken = startOfFileToken;
1706
+ this.token = startOfFileToken;
1707
+ }
1708
+ get [Symbol.toStringTag]() {
1709
+ return "SchemaCoordinateLexer";
1710
+ }
1711
+ /**
1712
+ * Advances the token stream to the next non-ignored token.
1713
+ */
1714
+ advance() {
1715
+ this.lastToken = this.token;
1716
+ const token = this.token = this.lookahead();
1717
+ return token;
1718
+ }
1719
+ /**
1720
+ * Looks ahead and returns the next non-ignored token, but does not change
1721
+ * the current Lexer token.
1722
+ */
1723
+ lookahead() {
1724
+ let token = this.token;
1725
+ if (token.kind !== TokenKind.EOF) {
1726
+ const nextToken = readNextToken2(this, token.end);
1727
+ token.next = nextToken;
1728
+ nextToken.prev = token;
1729
+ token = nextToken;
1730
+ }
1731
+ return token;
1732
+ }
1733
+ };
1734
+ }
1735
+ });
1736
+
1737
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/jsutils/inspect.mjs
1628
1738
  function inspect(value) {
1629
1739
  return formatValue(value, []);
1630
1740
  }
@@ -1706,17 +1816,17 @@ var MockServiceWorker = (() => {
1706
1816
  }
1707
1817
  var MAX_ARRAY_LENGTH, MAX_RECURSIVE_DEPTH;
1708
1818
  var init_inspect = __esm({
1709
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/jsutils/inspect.mjs"() {
1819
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/jsutils/inspect.mjs"() {
1710
1820
  "use strict";
1711
1821
  MAX_ARRAY_LENGTH = 10;
1712
1822
  MAX_RECURSIVE_DEPTH = 2;
1713
1823
  }
1714
1824
  });
1715
1825
 
1716
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/jsutils/instanceOf.mjs
1826
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/jsutils/instanceOf.mjs
1717
1827
  var isProduction, instanceOf;
1718
1828
  var init_instanceOf = __esm({
1719
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/jsutils/instanceOf.mjs"() {
1829
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/jsutils/instanceOf.mjs"() {
1720
1830
  "use strict";
1721
1831
  init_inspect();
1722
1832
  isProduction = globalThis.process && // eslint-disable-next-line no-undef
@@ -1757,13 +1867,13 @@ spurious results.`);
1757
1867
  }
1758
1868
  });
1759
1869
 
1760
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/language/source.mjs
1870
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/language/source.mjs
1761
1871
  function isSource(source) {
1762
1872
  return instanceOf(source, Source);
1763
1873
  }
1764
1874
  var Source;
1765
1875
  var init_source = __esm({
1766
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/language/source.mjs"() {
1876
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/language/source.mjs"() {
1767
1877
  "use strict";
1768
1878
  init_devAssert();
1769
1879
  init_inspect();
@@ -1793,10 +1903,15 @@ spurious results.`);
1793
1903
  }
1794
1904
  });
1795
1905
 
1796
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/language/parser.mjs
1906
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/language/parser.mjs
1797
1907
  function parse4(source, options) {
1798
1908
  const parser = new Parser(source, options);
1799
- return parser.parseDocument();
1909
+ const document2 = parser.parseDocument();
1910
+ Object.defineProperty(document2, "tokenCount", {
1911
+ enumerable: false,
1912
+ value: parser.tokenCount
1913
+ });
1914
+ return document2;
1800
1915
  }
1801
1916
  function parseValue(source, options) {
1802
1917
  const parser = new Parser(source, options);
@@ -1819,6 +1934,17 @@ spurious results.`);
1819
1934
  parser.expectToken(TokenKind.EOF);
1820
1935
  return type;
1821
1936
  }
1937
+ function parseSchemaCoordinate(source) {
1938
+ const sourceObj = isSource(source) ? source : new Source(source);
1939
+ const lexer2 = new SchemaCoordinateLexer(sourceObj);
1940
+ const parser = new Parser(source, {
1941
+ lexer: lexer2
1942
+ });
1943
+ parser.expectToken(TokenKind.SOF);
1944
+ const coordinate = parser.parseSchemaCoordinate();
1945
+ parser.expectToken(TokenKind.EOF);
1946
+ return coordinate;
1947
+ }
1822
1948
  function getTokenDesc(token) {
1823
1949
  const value = token.value;
1824
1950
  return getTokenKindDesc(token.kind) + (value != null ? ` "${value}"` : "");
@@ -1828,22 +1954,31 @@ spurious results.`);
1828
1954
  }
1829
1955
  var Parser;
1830
1956
  var init_parser = __esm({
1831
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/language/parser.mjs"() {
1957
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/language/parser.mjs"() {
1832
1958
  "use strict";
1833
1959
  init_syntaxError();
1834
1960
  init_ast();
1835
1961
  init_directiveLocation();
1836
1962
  init_kinds();
1837
1963
  init_lexer();
1964
+ init_schemaCoordinateLexer();
1838
1965
  init_source();
1839
1966
  init_tokenKind();
1840
1967
  Parser = class {
1841
1968
  constructor(source, options = {}) {
1842
- const sourceObj = isSource(source) ? source : new Source(source);
1843
- this._lexer = new Lexer(sourceObj);
1844
- this._options = options;
1969
+ const { lexer: lexer2, ..._options } = options;
1970
+ if (lexer2) {
1971
+ this._lexer = lexer2;
1972
+ } else {
1973
+ const sourceObj = isSource(source) ? source : new Source(source);
1974
+ this._lexer = new Lexer(sourceObj);
1975
+ }
1976
+ this._options = _options;
1845
1977
  this._tokenCounter = 0;
1846
1978
  }
1979
+ get tokenCount() {
1980
+ return this._tokenCounter;
1981
+ }
1847
1982
  /**
1848
1983
  * Converts a name lex token into a name parse node.
1849
1984
  */
@@ -1897,6 +2032,13 @@ spurious results.`);
1897
2032
  }
1898
2033
  const hasDescription = this.peekDescription();
1899
2034
  const keywordToken = hasDescription ? this._lexer.lookahead() : this._lexer.token;
2035
+ if (hasDescription && keywordToken.kind === TokenKind.BRACE_L) {
2036
+ throw syntaxError(
2037
+ this._lexer.source,
2038
+ this._lexer.token.start,
2039
+ "Unexpected description, descriptions are not supported on shorthand queries."
2040
+ );
2041
+ }
1900
2042
  if (keywordToken.kind === TokenKind.NAME) {
1901
2043
  switch (keywordToken.value) {
1902
2044
  case "schema":
@@ -1916,13 +2058,6 @@ spurious results.`);
1916
2058
  case "directive":
1917
2059
  return this.parseDirectiveDefinition();
1918
2060
  }
1919
- if (hasDescription) {
1920
- throw syntaxError(
1921
- this._lexer.source,
1922
- this._lexer.token.start,
1923
- "Unexpected description, descriptions are supported only on type definitions."
1924
- );
1925
- }
1926
2061
  switch (keywordToken.value) {
1927
2062
  case "query":
1928
2063
  case "mutation":
@@ -1930,6 +2065,15 @@ spurious results.`);
1930
2065
  return this.parseOperationDefinition();
1931
2066
  case "fragment":
1932
2067
  return this.parseFragmentDefinition();
2068
+ }
2069
+ if (hasDescription) {
2070
+ throw syntaxError(
2071
+ this._lexer.source,
2072
+ this._lexer.token.start,
2073
+ "Unexpected description, only GraphQL definitions support descriptions."
2074
+ );
2075
+ }
2076
+ switch (keywordToken.value) {
1933
2077
  case "extend":
1934
2078
  return this.parseTypeSystemExtension();
1935
2079
  }
@@ -1948,12 +2092,14 @@ spurious results.`);
1948
2092
  return this.node(start, {
1949
2093
  kind: Kind.OPERATION_DEFINITION,
1950
2094
  operation: OperationTypeNode.QUERY,
2095
+ description: void 0,
1951
2096
  name: void 0,
1952
2097
  variableDefinitions: [],
1953
2098
  directives: [],
1954
2099
  selectionSet: this.parseSelectionSet()
1955
2100
  });
1956
2101
  }
2102
+ const description = this.parseDescription();
1957
2103
  const operation = this.parseOperationType();
1958
2104
  let name;
1959
2105
  if (this.peek(TokenKind.NAME)) {
@@ -1962,6 +2108,7 @@ spurious results.`);
1962
2108
  return this.node(start, {
1963
2109
  kind: Kind.OPERATION_DEFINITION,
1964
2110
  operation,
2111
+ description,
1965
2112
  name,
1966
2113
  variableDefinitions: this.parseVariableDefinitions(),
1967
2114
  directives: this.parseDirectives(false),
@@ -1999,6 +2146,7 @@ spurious results.`);
1999
2146
  parseVariableDefinition() {
2000
2147
  return this.node(this._lexer.token, {
2001
2148
  kind: Kind.VARIABLE_DEFINITION,
2149
+ description: this.parseDescription(),
2002
2150
  variable: this.parseVariable(),
2003
2151
  type: (this.expectToken(TokenKind.COLON), this.parseTypeReference()),
2004
2152
  defaultValue: this.expectOptionalToken(TokenKind.EQUALS) ? this.parseConstValueLiteral() : void 0,
@@ -2122,10 +2270,12 @@ spurious results.`);
2122
2270
  */
2123
2271
  parseFragmentDefinition() {
2124
2272
  const start = this._lexer.token;
2273
+ const description = this.parseDescription();
2125
2274
  this.expectKeyword("fragment");
2126
2275
  if (this._options.allowLegacyFragmentVariables === true) {
2127
2276
  return this.node(start, {
2128
2277
  kind: Kind.FRAGMENT_DEFINITION,
2278
+ description,
2129
2279
  name: this.parseFragmentName(),
2130
2280
  variableDefinitions: this.parseVariableDefinitions(),
2131
2281
  typeCondition: (this.expectKeyword("on"), this.parseNamedType()),
@@ -2135,6 +2285,7 @@ spurious results.`);
2135
2285
  }
2136
2286
  return this.node(start, {
2137
2287
  kind: Kind.FRAGMENT_DEFINITION,
2288
+ description,
2138
2289
  name: this.parseFragmentName(),
2139
2290
  typeCondition: (this.expectKeyword("on"), this.parseNamedType()),
2140
2291
  directives: this.parseDirectives(false),
@@ -2914,6 +3065,61 @@ spurious results.`);
2914
3065
  }
2915
3066
  throw this.unexpected(start);
2916
3067
  }
3068
+ // Schema Coordinates
3069
+ /**
3070
+ * SchemaCoordinate :
3071
+ * - Name
3072
+ * - Name . Name
3073
+ * - Name . Name ( Name : )
3074
+ * - \@ Name
3075
+ * - \@ Name ( Name : )
3076
+ */
3077
+ parseSchemaCoordinate() {
3078
+ const start = this._lexer.token;
3079
+ const ofDirective = this.expectOptionalToken(TokenKind.AT);
3080
+ const name = this.parseName();
3081
+ let memberName;
3082
+ if (!ofDirective && this.expectOptionalToken(TokenKind.DOT)) {
3083
+ memberName = this.parseName();
3084
+ }
3085
+ let argumentName;
3086
+ if ((ofDirective || memberName) && this.expectOptionalToken(TokenKind.PAREN_L)) {
3087
+ argumentName = this.parseName();
3088
+ this.expectToken(TokenKind.COLON);
3089
+ this.expectToken(TokenKind.PAREN_R);
3090
+ }
3091
+ if (ofDirective) {
3092
+ if (argumentName) {
3093
+ return this.node(start, {
3094
+ kind: Kind.DIRECTIVE_ARGUMENT_COORDINATE,
3095
+ name,
3096
+ argumentName
3097
+ });
3098
+ }
3099
+ return this.node(start, {
3100
+ kind: Kind.DIRECTIVE_COORDINATE,
3101
+ name
3102
+ });
3103
+ } else if (memberName) {
3104
+ if (argumentName) {
3105
+ return this.node(start, {
3106
+ kind: Kind.ARGUMENT_COORDINATE,
3107
+ name,
3108
+ fieldName: memberName,
3109
+ argumentName
3110
+ });
3111
+ }
3112
+ return this.node(start, {
3113
+ kind: Kind.MEMBER_COORDINATE,
3114
+ name,
3115
+ memberName
3116
+ });
3117
+ }
3118
+ return this.node(start, {
3119
+ kind: Kind.TYPE_COORDINATE,
3120
+ name
3121
+ });
3122
+ }
2917
3123
  // Core parsing utility functions
2918
3124
  /**
2919
3125
  * Returns a node that, if configured to do so, sets a "loc" field as a
@@ -3061,9 +3267,9 @@ spurious results.`);
3061
3267
  advanceLexer() {
3062
3268
  const { maxTokens } = this._options;
3063
3269
  const token = this._lexer.advance();
3064
- if (maxTokens !== void 0 && token.kind !== TokenKind.EOF) {
3270
+ if (token.kind !== TokenKind.EOF) {
3065
3271
  ++this._tokenCounter;
3066
- if (this._tokenCounter > maxTokens) {
3272
+ if (maxTokens !== void 0 && this._tokenCounter > maxTokens) {
3067
3273
  throw syntaxError(
3068
3274
  this._lexer.source,
3069
3275
  token.start,
@@ -3076,7 +3282,7 @@ spurious results.`);
3076
3282
  }
3077
3283
  });
3078
3284
 
3079
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/jsutils/didYouMean.mjs
3285
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/jsutils/didYouMean.mjs
3080
3286
  function didYouMean(firstArg, secondArg) {
3081
3287
  const [subMessage, suggestionsArg] = secondArg ? [firstArg, secondArg] : [void 0, firstArg];
3082
3288
  let message4 = " Did you mean ";
@@ -3098,23 +3304,23 @@ spurious results.`);
3098
3304
  }
3099
3305
  var MAX_SUGGESTIONS;
3100
3306
  var init_didYouMean = __esm({
3101
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/jsutils/didYouMean.mjs"() {
3307
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/jsutils/didYouMean.mjs"() {
3102
3308
  "use strict";
3103
3309
  MAX_SUGGESTIONS = 5;
3104
3310
  }
3105
3311
  });
3106
3312
 
3107
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/jsutils/identityFunc.mjs
3313
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/jsutils/identityFunc.mjs
3108
3314
  function identityFunc(x) {
3109
3315
  return x;
3110
3316
  }
3111
3317
  var init_identityFunc = __esm({
3112
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/jsutils/identityFunc.mjs"() {
3318
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/jsutils/identityFunc.mjs"() {
3113
3319
  "use strict";
3114
3320
  }
3115
3321
  });
3116
3322
 
3117
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/jsutils/keyMap.mjs
3323
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/jsutils/keyMap.mjs
3118
3324
  function keyMap(list, keyFn) {
3119
3325
  const result = /* @__PURE__ */ Object.create(null);
3120
3326
  for (const item of list) {
@@ -3123,12 +3329,12 @@ spurious results.`);
3123
3329
  return result;
3124
3330
  }
3125
3331
  var init_keyMap = __esm({
3126
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/jsutils/keyMap.mjs"() {
3332
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/jsutils/keyMap.mjs"() {
3127
3333
  "use strict";
3128
3334
  }
3129
3335
  });
3130
3336
 
3131
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/jsutils/keyValMap.mjs
3337
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/jsutils/keyValMap.mjs
3132
3338
  function keyValMap(list, keyFn, valFn) {
3133
3339
  const result = /* @__PURE__ */ Object.create(null);
3134
3340
  for (const item of list) {
@@ -3137,12 +3343,12 @@ spurious results.`);
3137
3343
  return result;
3138
3344
  }
3139
3345
  var init_keyValMap = __esm({
3140
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/jsutils/keyValMap.mjs"() {
3346
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/jsutils/keyValMap.mjs"() {
3141
3347
  "use strict";
3142
3348
  }
3143
3349
  });
3144
3350
 
3145
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/jsutils/mapValue.mjs
3351
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/jsutils/mapValue.mjs
3146
3352
  function mapValue(map, fn) {
3147
3353
  const result = /* @__PURE__ */ Object.create(null);
3148
3354
  for (const key of Object.keys(map)) {
@@ -3151,12 +3357,12 @@ spurious results.`);
3151
3357
  return result;
3152
3358
  }
3153
3359
  var init_mapValue = __esm({
3154
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/jsutils/mapValue.mjs"() {
3360
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/jsutils/mapValue.mjs"() {
3155
3361
  "use strict";
3156
3362
  }
3157
3363
  });
3158
3364
 
3159
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/jsutils/naturalCompare.mjs
3365
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/jsutils/naturalCompare.mjs
3160
3366
  function naturalCompare(aStr, bStr) {
3161
3367
  let aIndex = 0;
3162
3368
  let bIndex = 0;
@@ -3200,14 +3406,14 @@ spurious results.`);
3200
3406
  }
3201
3407
  var DIGIT_0, DIGIT_9;
3202
3408
  var init_naturalCompare = __esm({
3203
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/jsutils/naturalCompare.mjs"() {
3409
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/jsutils/naturalCompare.mjs"() {
3204
3410
  "use strict";
3205
3411
  DIGIT_0 = 48;
3206
3412
  DIGIT_9 = 57;
3207
3413
  }
3208
3414
  });
3209
3415
 
3210
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/jsutils/suggestionList.mjs
3416
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/jsutils/suggestionList.mjs
3211
3417
  function suggestionList(input, options) {
3212
3418
  const optionsByDistance = /* @__PURE__ */ Object.create(null);
3213
3419
  const lexicalDistance = new LexicalDistance(input);
@@ -3233,7 +3439,7 @@ spurious results.`);
3233
3439
  }
3234
3440
  var LexicalDistance;
3235
3441
  var init_suggestionList = __esm({
3236
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/jsutils/suggestionList.mjs"() {
3442
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/jsutils/suggestionList.mjs"() {
3237
3443
  "use strict";
3238
3444
  init_naturalCompare();
3239
3445
  LexicalDistance = class {
@@ -3305,7 +3511,7 @@ spurious results.`);
3305
3511
  }
3306
3512
  });
3307
3513
 
3308
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/jsutils/toObjMap.mjs
3514
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/jsutils/toObjMap.mjs
3309
3515
  function toObjMap(obj) {
3310
3516
  if (obj == null) {
3311
3517
  return /* @__PURE__ */ Object.create(null);
@@ -3320,12 +3526,12 @@ spurious results.`);
3320
3526
  return map;
3321
3527
  }
3322
3528
  var init_toObjMap = __esm({
3323
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/jsutils/toObjMap.mjs"() {
3529
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/jsutils/toObjMap.mjs"() {
3324
3530
  "use strict";
3325
3531
  }
3326
3532
  });
3327
3533
 
3328
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/language/printString.mjs
3534
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/language/printString.mjs
3329
3535
  function printString(str) {
3330
3536
  return `"${str.replace(escapedRegExp, escapedReplacer)}"`;
3331
3537
  }
@@ -3334,7 +3540,7 @@ spurious results.`);
3334
3540
  }
3335
3541
  var escapedRegExp, escapeSequences;
3336
3542
  var init_printString = __esm({
3337
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/language/printString.mjs"() {
3543
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/language/printString.mjs"() {
3338
3544
  "use strict";
3339
3545
  escapedRegExp = /[\x00-\x1f\x22\x5c\x7f-\x9f]/g;
3340
3546
  escapeSequences = [
@@ -3507,7 +3713,7 @@ spurious results.`);
3507
3713
  }
3508
3714
  });
3509
3715
 
3510
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/language/visitor.mjs
3716
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/language/visitor.mjs
3511
3717
  function visit(root, visitor, visitorKeys = QueryDocumentKeys) {
3512
3718
  const enterLeaveMap = /* @__PURE__ */ new Map();
3513
3719
  for (const kind of Object.values(Kind)) {
@@ -3545,10 +3751,7 @@ spurious results.`);
3545
3751
  }
3546
3752
  }
3547
3753
  } else {
3548
- node = Object.defineProperties(
3549
- {},
3550
- Object.getOwnPropertyDescriptors(node)
3551
- );
3754
+ node = { ...node };
3552
3755
  for (const [editKey, editValue] of edits) {
3553
3756
  node[editKey] = editValue;
3554
3757
  }
@@ -3697,7 +3900,7 @@ spurious results.`);
3697
3900
  }
3698
3901
  var BREAK;
3699
3902
  var init_visitor = __esm({
3700
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/language/visitor.mjs"() {
3903
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/language/visitor.mjs"() {
3701
3904
  "use strict";
3702
3905
  init_devAssert();
3703
3906
  init_inspect();
@@ -3707,7 +3910,7 @@ spurious results.`);
3707
3910
  }
3708
3911
  });
3709
3912
 
3710
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/language/printer.mjs
3913
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/language/printer.mjs
3711
3914
  function print(ast) {
3712
3915
  return visit(ast, printDocASTReducer);
3713
3916
  }
@@ -3730,7 +3933,7 @@ spurious results.`);
3730
3933
  }
3731
3934
  var MAX_LINE_LENGTH, printDocASTReducer;
3732
3935
  var init_printer = __esm({
3733
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/language/printer.mjs"() {
3936
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/language/printer.mjs"() {
3734
3937
  "use strict";
3735
3938
  init_blockString();
3736
3939
  init_printString();
@@ -3749,8 +3952,8 @@ spurious results.`);
3749
3952
  },
3750
3953
  OperationDefinition: {
3751
3954
  leave(node) {
3752
- const varDefs = wrap("(", join(node.variableDefinitions, ", "), ")");
3753
- const prefix = join(
3955
+ const varDefs = hasMultilineItems(node.variableDefinitions) ? wrap("(\n", join(node.variableDefinitions, "\n"), "\n)") : wrap("(", join(node.variableDefinitions, ", "), ")");
3956
+ const prefix = wrap("", node.description, "\n") + join(
3754
3957
  [
3755
3958
  node.operation,
3756
3959
  join([node.name, varDefs]),
@@ -3762,7 +3965,7 @@ spurious results.`);
3762
3965
  }
3763
3966
  },
3764
3967
  VariableDefinition: {
3765
- leave: ({ variable, type, defaultValue, directives }) => variable + ": " + type + wrap(" = ", defaultValue) + wrap(" ", join(directives, " "))
3968
+ leave: ({ variable, type, defaultValue, directives, description }) => wrap("", description, "\n") + variable + ": " + type + wrap(" = ", defaultValue) + wrap(" ", join(directives, " "))
3766
3969
  },
3767
3970
  SelectionSet: {
3768
3971
  leave: ({ selections }) => block(selections)
@@ -3796,10 +3999,16 @@ spurious results.`);
3796
3999
  )
3797
4000
  },
3798
4001
  FragmentDefinition: {
3799
- leave: ({ name, typeCondition, variableDefinitions, directives, selectionSet }) => (
3800
- // or removed in the future.
3801
- `fragment ${name}${wrap("(", join(variableDefinitions, ", "), ")")} on ${typeCondition} ${wrap("", join(directives, " "), " ")}` + selectionSet
3802
- )
4002
+ leave: ({
4003
+ name,
4004
+ typeCondition,
4005
+ variableDefinitions,
4006
+ directives,
4007
+ selectionSet,
4008
+ description
4009
+ }) => wrap("", description, "\n") + // Note: fragment variable definitions are experimental and may be changed
4010
+ // or removed in the future.
4011
+ `fragment ${name}${wrap("(", join(variableDefinitions, ", "), ")")} on ${typeCondition} ${wrap("", join(directives, " "), " ")}` + selectionSet
3803
4012
  },
3804
4013
  // Value
3805
4014
  IntValue: {
@@ -3953,12 +4162,28 @@ spurious results.`);
3953
4162
  },
3954
4163
  InputObjectTypeExtension: {
3955
4164
  leave: ({ name, directives, fields }) => join(["extend input", name, join(directives, " "), block(fields)], " ")
4165
+ },
4166
+ // Schema Coordinates
4167
+ TypeCoordinate: {
4168
+ leave: ({ name }) => name
4169
+ },
4170
+ MemberCoordinate: {
4171
+ leave: ({ name, memberName }) => join([name, wrap(".", memberName)])
4172
+ },
4173
+ ArgumentCoordinate: {
4174
+ leave: ({ name, fieldName, argumentName }) => join([name, wrap(".", fieldName), wrap("(", argumentName, ":)")])
4175
+ },
4176
+ DirectiveCoordinate: {
4177
+ leave: ({ name }) => join(["@", name])
4178
+ },
4179
+ DirectiveArgumentCoordinate: {
4180
+ leave: ({ name, argumentName }) => join(["@", name, wrap("(", argumentName, ":)")])
3956
4181
  }
3957
4182
  };
3958
4183
  }
3959
4184
  });
3960
4185
 
3961
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/utilities/valueFromASTUntyped.mjs
4186
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/utilities/valueFromASTUntyped.mjs
3962
4187
  function valueFromASTUntyped(valueNode, variables) {
3963
4188
  switch (valueNode.kind) {
3964
4189
  case Kind.NULL:
@@ -3986,14 +4211,14 @@ spurious results.`);
3986
4211
  }
3987
4212
  }
3988
4213
  var init_valueFromASTUntyped = __esm({
3989
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/utilities/valueFromASTUntyped.mjs"() {
4214
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/utilities/valueFromASTUntyped.mjs"() {
3990
4215
  "use strict";
3991
4216
  init_keyValMap();
3992
4217
  init_kinds();
3993
4218
  }
3994
4219
  });
3995
4220
 
3996
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/type/assertName.mjs
4221
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/type/assertName.mjs
3997
4222
  function assertName(name) {
3998
4223
  name != null || devAssert(false, "Must provide name.");
3999
4224
  typeof name === "string" || devAssert(false, "Expected name to be a string.");
@@ -4021,7 +4246,7 @@ spurious results.`);
4021
4246
  return assertName(name);
4022
4247
  }
4023
4248
  var init_assertName = __esm({
4024
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/type/assertName.mjs"() {
4249
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/type/assertName.mjs"() {
4025
4250
  "use strict";
4026
4251
  init_devAssert();
4027
4252
  init_GraphQLError();
@@ -4029,7 +4254,7 @@ spurious results.`);
4029
4254
  }
4030
4255
  });
4031
4256
 
4032
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/type/definition.mjs
4257
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/type/definition.mjs
4033
4258
  function isType(type) {
4034
4259
  return isScalarType(type) || isObjectType(type) || isInterfaceType(type) || isUnionType(type) || isEnumType(type) || isInputObjectType(type) || isListType(type) || isNonNullType(type);
4035
4260
  }
@@ -4357,7 +4582,7 @@ spurious results.`);
4357
4582
  }
4358
4583
  var GraphQLList, GraphQLNonNull, GraphQLScalarType, GraphQLObjectType, GraphQLInterfaceType, GraphQLUnionType, GraphQLEnumType, GraphQLInputObjectType;
4359
4584
  var init_definition = __esm({
4360
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/type/definition.mjs"() {
4585
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/type/definition.mjs"() {
4361
4586
  "use strict";
4362
4587
  init_devAssert();
4363
4588
  init_didYouMean();
@@ -4610,22 +4835,31 @@ spurious results.`);
4610
4835
  this.extensions = toObjMap(config.extensions);
4611
4836
  this.astNode = config.astNode;
4612
4837
  this.extensionASTNodes = (_config$extensionASTN5 = config.extensionASTNodes) !== null && _config$extensionASTN5 !== void 0 ? _config$extensionASTN5 : [];
4613
- this._values = defineEnumValues(this.name, config.values);
4614
- this._valueLookup = new Map(
4615
- this._values.map((enumValue) => [enumValue.value, enumValue])
4616
- );
4617
- this._nameLookup = keyMap(this._values, (value) => value.name);
4838
+ this._values = typeof config.values === "function" ? config.values : defineEnumValues(this.name, config.values);
4839
+ this._valueLookup = null;
4840
+ this._nameLookup = null;
4618
4841
  }
4619
4842
  get [Symbol.toStringTag]() {
4620
4843
  return "GraphQLEnumType";
4621
4844
  }
4622
4845
  getValues() {
4846
+ if (typeof this._values === "function") {
4847
+ this._values = defineEnumValues(this.name, this._values());
4848
+ }
4623
4849
  return this._values;
4624
4850
  }
4625
4851
  getValue(name) {
4852
+ if (this._nameLookup === null) {
4853
+ this._nameLookup = keyMap(this.getValues(), (value) => value.name);
4854
+ }
4626
4855
  return this._nameLookup[name];
4627
4856
  }
4628
4857
  serialize(outputValue) {
4858
+ if (this._valueLookup === null) {
4859
+ this._valueLookup = new Map(
4860
+ this.getValues().map((enumValue2) => [enumValue2.value, enumValue2])
4861
+ );
4862
+ }
4629
4863
  const enumValue = this._valueLookup.get(outputValue);
4630
4864
  if (enumValue === void 0) {
4631
4865
  throw new GraphQLError(
@@ -4701,12 +4935,13 @@ spurious results.`);
4701
4935
  };
4702
4936
  GraphQLInputObjectType = class {
4703
4937
  constructor(config) {
4704
- var _config$extensionASTN6;
4938
+ var _config$extensionASTN6, _config$isOneOf;
4705
4939
  this.name = assertName(config.name);
4706
4940
  this.description = config.description;
4707
4941
  this.extensions = toObjMap(config.extensions);
4708
4942
  this.astNode = config.astNode;
4709
4943
  this.extensionASTNodes = (_config$extensionASTN6 = config.extensionASTNodes) !== null && _config$extensionASTN6 !== void 0 ? _config$extensionASTN6 : [];
4944
+ this.isOneOf = (_config$isOneOf = config.isOneOf) !== null && _config$isOneOf !== void 0 ? _config$isOneOf : false;
4710
4945
  this._fields = defineInputFieldMap.bind(void 0, config);
4711
4946
  }
4712
4947
  get [Symbol.toStringTag]() {
@@ -4733,7 +4968,8 @@ spurious results.`);
4733
4968
  fields,
4734
4969
  extensions: this.extensions,
4735
4970
  astNode: this.astNode,
4736
- extensionASTNodes: this.extensionASTNodes
4971
+ extensionASTNodes: this.extensionASTNodes,
4972
+ isOneOf: this.isOneOf
4737
4973
  };
4738
4974
  }
4739
4975
  toString() {
@@ -4746,7 +4982,7 @@ spurious results.`);
4746
4982
  }
4747
4983
  });
4748
4984
 
4749
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/utilities/typeComparators.mjs
4985
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/utilities/typeComparators.mjs
4750
4986
  function isEqualType(typeA, typeB) {
4751
4987
  if (typeA === typeB) {
4752
4988
  return true;
@@ -4799,13 +5035,13 @@ spurious results.`);
4799
5035
  return false;
4800
5036
  }
4801
5037
  var init_typeComparators = __esm({
4802
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/utilities/typeComparators.mjs"() {
5038
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/utilities/typeComparators.mjs"() {
4803
5039
  "use strict";
4804
5040
  init_definition();
4805
5041
  }
4806
5042
  });
4807
5043
 
4808
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/type/scalars.mjs
5044
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/type/scalars.mjs
4809
5045
  function isSpecifiedScalarType(type) {
4810
5046
  return specifiedScalarTypes.some(({ name }) => type.name === name);
4811
5047
  }
@@ -4825,7 +5061,7 @@ spurious results.`);
4825
5061
  }
4826
5062
  var GRAPHQL_MAX_INT, GRAPHQL_MIN_INT, GraphQLInt, GraphQLFloat, GraphQLString, GraphQLBoolean, GraphQLID, specifiedScalarTypes;
4827
5063
  var init_scalars = __esm({
4828
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/type/scalars.mjs"() {
5064
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/type/scalars.mjs"() {
4829
5065
  "use strict";
4830
5066
  init_inspect();
4831
5067
  init_isObjectLike();
@@ -5049,7 +5285,7 @@ spurious results.`);
5049
5285
  }
5050
5286
  });
5051
5287
 
5052
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/type/directives.mjs
5288
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/type/directives.mjs
5053
5289
  function isDirective(directive) {
5054
5290
  return instanceOf(directive, GraphQLDirective);
5055
5291
  }
@@ -5064,9 +5300,9 @@ spurious results.`);
5064
5300
  function isSpecifiedDirective(directive) {
5065
5301
  return specifiedDirectives.some(({ name }) => name === directive.name);
5066
5302
  }
5067
- var GraphQLDirective, GraphQLIncludeDirective, GraphQLSkipDirective, DEFAULT_DEPRECATION_REASON, GraphQLDeprecatedDirective, GraphQLSpecifiedByDirective, specifiedDirectives;
5303
+ var GraphQLDirective, GraphQLIncludeDirective, GraphQLSkipDirective, DEFAULT_DEPRECATION_REASON, GraphQLDeprecatedDirective, GraphQLSpecifiedByDirective, GraphQLOneOfDirective, specifiedDirectives;
5068
5304
  var init_directives = __esm({
5069
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/type/directives.mjs"() {
5305
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/type/directives.mjs"() {
5070
5306
  "use strict";
5071
5307
  init_devAssert();
5072
5308
  init_inspect();
@@ -5174,26 +5410,33 @@ spurious results.`);
5174
5410
  }
5175
5411
  }
5176
5412
  });
5413
+ GraphQLOneOfDirective = new GraphQLDirective({
5414
+ name: "oneOf",
5415
+ description: "Indicates exactly one field must be supplied and this field must not be `null`.",
5416
+ locations: [DirectiveLocation.INPUT_OBJECT],
5417
+ args: {}
5418
+ });
5177
5419
  specifiedDirectives = Object.freeze([
5178
5420
  GraphQLIncludeDirective,
5179
5421
  GraphQLSkipDirective,
5180
5422
  GraphQLDeprecatedDirective,
5181
- GraphQLSpecifiedByDirective
5423
+ GraphQLSpecifiedByDirective,
5424
+ GraphQLOneOfDirective
5182
5425
  ]);
5183
5426
  }
5184
5427
  });
5185
5428
 
5186
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/jsutils/isIterableObject.mjs
5429
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/jsutils/isIterableObject.mjs
5187
5430
  function isIterableObject(maybeIterable) {
5188
5431
  return typeof maybeIterable === "object" && typeof (maybeIterable === null || maybeIterable === void 0 ? void 0 : maybeIterable[Symbol.iterator]) === "function";
5189
5432
  }
5190
5433
  var init_isIterableObject = __esm({
5191
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/jsutils/isIterableObject.mjs"() {
5434
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/jsutils/isIterableObject.mjs"() {
5192
5435
  "use strict";
5193
5436
  }
5194
5437
  });
5195
5438
 
5196
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/utilities/astFromValue.mjs
5439
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/utilities/astFromValue.mjs
5197
5440
  function astFromValue(value, type) {
5198
5441
  if (isNonNullType(type)) {
5199
5442
  const astValue = astFromValue(value, type.ofType);
@@ -5295,7 +5538,7 @@ spurious results.`);
5295
5538
  }
5296
5539
  var integerStringRegExp;
5297
5540
  var init_astFromValue = __esm({
5298
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/utilities/astFromValue.mjs"() {
5541
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/utilities/astFromValue.mjs"() {
5299
5542
  "use strict";
5300
5543
  init_inspect();
5301
5544
  init_invariant();
@@ -5308,13 +5551,13 @@ spurious results.`);
5308
5551
  }
5309
5552
  });
5310
5553
 
5311
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/type/introspection.mjs
5554
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/type/introspection.mjs
5312
5555
  function isIntrospectionType(type) {
5313
5556
  return introspectionTypes.some(({ name }) => type.name === name);
5314
5557
  }
5315
5558
  var __Schema, __Directive, __DirectiveLocation, __Type, __Field, __InputValue, __EnumValue, TypeKind, __TypeKind, SchemaMetaFieldDef, TypeMetaFieldDef, TypeNameMetaFieldDef, introspectionTypes;
5316
5559
  var init_introspection = __esm({
5317
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/type/introspection.mjs"() {
5560
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/type/introspection.mjs"() {
5318
5561
  "use strict";
5319
5562
  init_inspect();
5320
5563
  init_invariant();
@@ -5595,6 +5838,14 @@ spurious results.`);
5595
5838
  ofType: {
5596
5839
  type: __Type,
5597
5840
  resolve: (type) => "ofType" in type ? type.ofType : void 0
5841
+ },
5842
+ isOneOf: {
5843
+ type: GraphQLBoolean,
5844
+ resolve: (type) => {
5845
+ if (isInputObjectType(type)) {
5846
+ return type.isOneOf;
5847
+ }
5848
+ }
5598
5849
  }
5599
5850
  })
5600
5851
  });
@@ -5796,7 +6047,7 @@ spurious results.`);
5796
6047
  }
5797
6048
  });
5798
6049
 
5799
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/type/schema.mjs
6050
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/type/schema.mjs
5800
6051
  function isSchema(schema) {
5801
6052
  return instanceOf(schema, GraphQLSchema);
5802
6053
  }
@@ -5834,7 +6085,7 @@ spurious results.`);
5834
6085
  }
5835
6086
  var GraphQLSchema;
5836
6087
  var init_schema = __esm({
5837
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/type/schema.mjs"() {
6088
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/type/schema.mjs"() {
5838
6089
  "use strict";
5839
6090
  init_devAssert();
5840
6091
  init_inspect();
@@ -6021,7 +6272,7 @@ spurious results.`);
6021
6272
  }
6022
6273
  });
6023
6274
 
6024
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/type/validate.mjs
6275
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/type/validate.mjs
6025
6276
  function validateSchema(schema) {
6026
6277
  assertSchema(schema);
6027
6278
  if (schema.__validationErrors) {
@@ -6104,6 +6355,12 @@ spurious results.`);
6104
6355
  continue;
6105
6356
  }
6106
6357
  validateName(context, directive);
6358
+ if (directive.locations.length === 0) {
6359
+ context.reportError(
6360
+ `Directive @${directive.name} must include 1 or more locations.`,
6361
+ directive.astNode
6362
+ );
6363
+ }
6107
6364
  for (const arg of directive.args) {
6108
6365
  validateName(context, arg);
6109
6366
  if (!isInputType(arg.type)) {
@@ -6366,6 +6623,24 @@ spurious results.`);
6366
6623
  ]
6367
6624
  );
6368
6625
  }
6626
+ if (inputObj.isOneOf) {
6627
+ validateOneOfInputObjectField(inputObj, field, context);
6628
+ }
6629
+ }
6630
+ }
6631
+ function validateOneOfInputObjectField(type, field, context) {
6632
+ if (isNonNullType(field.type)) {
6633
+ var _field$astNode4;
6634
+ context.reportError(
6635
+ `OneOf input field ${type.name}.${field.name} must be nullable.`,
6636
+ (_field$astNode4 = field.astNode) === null || _field$astNode4 === void 0 ? void 0 : _field$astNode4.type
6637
+ );
6638
+ }
6639
+ if (field.defaultValue !== void 0) {
6640
+ context.reportError(
6641
+ `OneOf input field ${type.name}.${field.name} cannot have a default value.`,
6642
+ field.astNode
6643
+ );
6369
6644
  }
6370
6645
  }
6371
6646
  function createInputObjectCircularRefsValidator(context) {
@@ -6431,7 +6706,7 @@ spurious results.`);
6431
6706
  }
6432
6707
  var SchemaValidationContext;
6433
6708
  var init_validate = __esm({
6434
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/type/validate.mjs"() {
6709
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/type/validate.mjs"() {
6435
6710
  "use strict";
6436
6711
  init_inspect();
6437
6712
  init_GraphQLError();
@@ -6461,7 +6736,7 @@ spurious results.`);
6461
6736
  }
6462
6737
  });
6463
6738
 
6464
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/utilities/typeFromAST.mjs
6739
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/utilities/typeFromAST.mjs
6465
6740
  function typeFromAST(schema, typeNode) {
6466
6741
  switch (typeNode.kind) {
6467
6742
  case Kind.LIST_TYPE: {
@@ -6477,14 +6752,14 @@ spurious results.`);
6477
6752
  }
6478
6753
  }
6479
6754
  var init_typeFromAST = __esm({
6480
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/utilities/typeFromAST.mjs"() {
6755
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/utilities/typeFromAST.mjs"() {
6481
6756
  "use strict";
6482
6757
  init_kinds();
6483
6758
  init_definition();
6484
6759
  }
6485
6760
  });
6486
6761
 
6487
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/utilities/TypeInfo.mjs
6762
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/utilities/TypeInfo.mjs
6488
6763
  function getFieldDef(schema, parentType, fieldNode) {
6489
6764
  const name = fieldNode.name.value;
6490
6765
  if (name === SchemaMetaFieldDef.name && schema.getQueryType() === parentType) {
@@ -6531,7 +6806,7 @@ spurious results.`);
6531
6806
  }
6532
6807
  var TypeInfo;
6533
6808
  var init_TypeInfo = __esm({
6534
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/utilities/TypeInfo.mjs"() {
6809
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/utilities/TypeInfo.mjs"() {
6535
6810
  "use strict";
6536
6811
  init_ast();
6537
6812
  init_kinds();
@@ -6746,7 +7021,7 @@ spurious results.`);
6746
7021
  }
6747
7022
  });
6748
7023
 
6749
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/language/predicates.mjs
7024
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/language/predicates.mjs
6750
7025
  function isDefinitionNode(node) {
6751
7026
  return isExecutableDefinitionNode(node) || isTypeSystemDefinitionNode(node) || isTypeSystemExtensionNode(node);
6752
7027
  }
@@ -6777,14 +7052,17 @@ spurious results.`);
6777
7052
  function isTypeExtensionNode(node) {
6778
7053
  return node.kind === Kind.SCALAR_TYPE_EXTENSION || node.kind === Kind.OBJECT_TYPE_EXTENSION || node.kind === Kind.INTERFACE_TYPE_EXTENSION || node.kind === Kind.UNION_TYPE_EXTENSION || node.kind === Kind.ENUM_TYPE_EXTENSION || node.kind === Kind.INPUT_OBJECT_TYPE_EXTENSION;
6779
7054
  }
7055
+ function isSchemaCoordinateNode(node) {
7056
+ return node.kind === Kind.TYPE_COORDINATE || node.kind === Kind.MEMBER_COORDINATE || node.kind === Kind.ARGUMENT_COORDINATE || node.kind === Kind.DIRECTIVE_COORDINATE || node.kind === Kind.DIRECTIVE_ARGUMENT_COORDINATE;
7057
+ }
6780
7058
  var init_predicates = __esm({
6781
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/language/predicates.mjs"() {
7059
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/language/predicates.mjs"() {
6782
7060
  "use strict";
6783
7061
  init_kinds();
6784
7062
  }
6785
7063
  });
6786
7064
 
6787
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/ExecutableDefinitionsRule.mjs
7065
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/ExecutableDefinitionsRule.mjs
6788
7066
  function ExecutableDefinitionsRule(context) {
6789
7067
  return {
6790
7068
  Document(node) {
@@ -6803,7 +7081,7 @@ spurious results.`);
6803
7081
  };
6804
7082
  }
6805
7083
  var init_ExecutableDefinitionsRule = __esm({
6806
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/ExecutableDefinitionsRule.mjs"() {
7084
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/ExecutableDefinitionsRule.mjs"() {
6807
7085
  "use strict";
6808
7086
  init_GraphQLError();
6809
7087
  init_kinds();
@@ -6811,7 +7089,7 @@ spurious results.`);
6811
7089
  }
6812
7090
  });
6813
7091
 
6814
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/FieldsOnCorrectTypeRule.mjs
7092
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/FieldsOnCorrectTypeRule.mjs
6815
7093
  function FieldsOnCorrectTypeRule(context) {
6816
7094
  return {
6817
7095
  Field(node) {
@@ -6884,7 +7162,7 @@ spurious results.`);
6884
7162
  return [];
6885
7163
  }
6886
7164
  var init_FieldsOnCorrectTypeRule = __esm({
6887
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/FieldsOnCorrectTypeRule.mjs"() {
7165
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/FieldsOnCorrectTypeRule.mjs"() {
6888
7166
  "use strict";
6889
7167
  init_didYouMean();
6890
7168
  init_naturalCompare();
@@ -6894,7 +7172,7 @@ spurious results.`);
6894
7172
  }
6895
7173
  });
6896
7174
 
6897
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/FragmentsOnCompositeTypesRule.mjs
7175
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/FragmentsOnCompositeTypesRule.mjs
6898
7176
  function FragmentsOnCompositeTypesRule(context) {
6899
7177
  return {
6900
7178
  InlineFragment(node) {
@@ -6931,7 +7209,7 @@ spurious results.`);
6931
7209
  };
6932
7210
  }
6933
7211
  var init_FragmentsOnCompositeTypesRule = __esm({
6934
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/FragmentsOnCompositeTypesRule.mjs"() {
7212
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/FragmentsOnCompositeTypesRule.mjs"() {
6935
7213
  "use strict";
6936
7214
  init_GraphQLError();
6937
7215
  init_printer();
@@ -6940,7 +7218,7 @@ spurious results.`);
6940
7218
  }
6941
7219
  });
6942
7220
 
6943
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/KnownArgumentNamesRule.mjs
7221
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/KnownArgumentNamesRule.mjs
6944
7222
  function KnownArgumentNamesRule(context) {
6945
7223
  return {
6946
7224
  // eslint-disable-next-line new-cap
@@ -7005,7 +7283,7 @@ spurious results.`);
7005
7283
  };
7006
7284
  }
7007
7285
  var init_KnownArgumentNamesRule = __esm({
7008
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/KnownArgumentNamesRule.mjs"() {
7286
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/KnownArgumentNamesRule.mjs"() {
7009
7287
  "use strict";
7010
7288
  init_didYouMean();
7011
7289
  init_suggestionList();
@@ -7015,7 +7293,7 @@ spurious results.`);
7015
7293
  }
7016
7294
  });
7017
7295
 
7018
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/KnownDirectivesRule.mjs
7296
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/KnownDirectivesRule.mjs
7019
7297
  function KnownDirectivesRule(context) {
7020
7298
  const locationsMap = /* @__PURE__ */ Object.create(null);
7021
7299
  const schema = context.getSchema();
@@ -7118,7 +7396,7 @@ spurious results.`);
7118
7396
  }
7119
7397
  }
7120
7398
  var init_KnownDirectivesRule = __esm({
7121
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/KnownDirectivesRule.mjs"() {
7399
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/KnownDirectivesRule.mjs"() {
7122
7400
  "use strict";
7123
7401
  init_inspect();
7124
7402
  init_invariant();
@@ -7130,7 +7408,7 @@ spurious results.`);
7130
7408
  }
7131
7409
  });
7132
7410
 
7133
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/KnownFragmentNamesRule.mjs
7411
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/KnownFragmentNamesRule.mjs
7134
7412
  function KnownFragmentNamesRule(context) {
7135
7413
  return {
7136
7414
  FragmentSpread(node) {
@@ -7147,13 +7425,13 @@ spurious results.`);
7147
7425
  };
7148
7426
  }
7149
7427
  var init_KnownFragmentNamesRule = __esm({
7150
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/KnownFragmentNamesRule.mjs"() {
7428
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/KnownFragmentNamesRule.mjs"() {
7151
7429
  "use strict";
7152
7430
  init_GraphQLError();
7153
7431
  }
7154
7432
  });
7155
7433
 
7156
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/KnownTypeNamesRule.mjs
7434
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/KnownTypeNamesRule.mjs
7157
7435
  function KnownTypeNamesRule(context) {
7158
7436
  const schema = context.getSchema();
7159
7437
  const existingTypesMap = schema ? schema.getTypeMap() : /* @__PURE__ */ Object.create(null);
@@ -7198,7 +7476,7 @@ spurious results.`);
7198
7476
  }
7199
7477
  var standardTypeNames;
7200
7478
  var init_KnownTypeNamesRule = __esm({
7201
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/KnownTypeNamesRule.mjs"() {
7479
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/KnownTypeNamesRule.mjs"() {
7202
7480
  "use strict";
7203
7481
  init_didYouMean();
7204
7482
  init_suggestionList();
@@ -7212,7 +7490,7 @@ spurious results.`);
7212
7490
  }
7213
7491
  });
7214
7492
 
7215
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/LoneAnonymousOperationRule.mjs
7493
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/LoneAnonymousOperationRule.mjs
7216
7494
  function LoneAnonymousOperationRule(context) {
7217
7495
  let operationCount = 0;
7218
7496
  return {
@@ -7236,14 +7514,14 @@ spurious results.`);
7236
7514
  };
7237
7515
  }
7238
7516
  var init_LoneAnonymousOperationRule = __esm({
7239
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/LoneAnonymousOperationRule.mjs"() {
7517
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/LoneAnonymousOperationRule.mjs"() {
7240
7518
  "use strict";
7241
7519
  init_GraphQLError();
7242
7520
  init_kinds();
7243
7521
  }
7244
7522
  });
7245
7523
 
7246
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/LoneSchemaDefinitionRule.mjs
7524
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/LoneSchemaDefinitionRule.mjs
7247
7525
  function LoneSchemaDefinitionRule(context) {
7248
7526
  var _ref, _ref2, _oldSchema$astNode;
7249
7527
  const oldSchema = context.getSchema();
@@ -7274,13 +7552,73 @@ spurious results.`);
7274
7552
  };
7275
7553
  }
7276
7554
  var init_LoneSchemaDefinitionRule = __esm({
7277
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/LoneSchemaDefinitionRule.mjs"() {
7555
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/LoneSchemaDefinitionRule.mjs"() {
7556
+ "use strict";
7557
+ init_GraphQLError();
7558
+ }
7559
+ });
7560
+
7561
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/MaxIntrospectionDepthRule.mjs
7562
+ function MaxIntrospectionDepthRule(context) {
7563
+ function checkDepth(node, visitedFragments = /* @__PURE__ */ Object.create(null), depth = 0) {
7564
+ if (node.kind === Kind.FRAGMENT_SPREAD) {
7565
+ const fragmentName = node.name.value;
7566
+ if (visitedFragments[fragmentName] === true) {
7567
+ return false;
7568
+ }
7569
+ const fragment = context.getFragment(fragmentName);
7570
+ if (!fragment) {
7571
+ return false;
7572
+ }
7573
+ try {
7574
+ visitedFragments[fragmentName] = true;
7575
+ return checkDepth(fragment, visitedFragments, depth);
7576
+ } finally {
7577
+ visitedFragments[fragmentName] = void 0;
7578
+ }
7579
+ }
7580
+ if (node.kind === Kind.FIELD && // check all introspection lists
7581
+ (node.name.value === "fields" || node.name.value === "interfaces" || node.name.value === "possibleTypes" || node.name.value === "inputFields")) {
7582
+ depth++;
7583
+ if (depth >= MAX_LISTS_DEPTH) {
7584
+ return true;
7585
+ }
7586
+ }
7587
+ if ("selectionSet" in node && node.selectionSet) {
7588
+ for (const child of node.selectionSet.selections) {
7589
+ if (checkDepth(child, visitedFragments, depth)) {
7590
+ return true;
7591
+ }
7592
+ }
7593
+ }
7594
+ return false;
7595
+ }
7596
+ return {
7597
+ Field(node) {
7598
+ if (node.name.value === "__schema" || node.name.value === "__type") {
7599
+ if (checkDepth(node)) {
7600
+ context.reportError(
7601
+ new GraphQLError("Maximum introspection depth exceeded", {
7602
+ nodes: [node]
7603
+ })
7604
+ );
7605
+ return false;
7606
+ }
7607
+ }
7608
+ }
7609
+ };
7610
+ }
7611
+ var MAX_LISTS_DEPTH;
7612
+ var init_MaxIntrospectionDepthRule = __esm({
7613
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/MaxIntrospectionDepthRule.mjs"() {
7278
7614
  "use strict";
7279
7615
  init_GraphQLError();
7616
+ init_kinds();
7617
+ MAX_LISTS_DEPTH = 3;
7280
7618
  }
7281
7619
  });
7282
7620
 
7283
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/NoFragmentCyclesRule.mjs
7621
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/NoFragmentCyclesRule.mjs
7284
7622
  function NoFragmentCyclesRule(context) {
7285
7623
  const visitedFrags = /* @__PURE__ */ Object.create(null);
7286
7624
  const spreadPath = [];
@@ -7330,13 +7668,13 @@ spurious results.`);
7330
7668
  }
7331
7669
  }
7332
7670
  var init_NoFragmentCyclesRule = __esm({
7333
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/NoFragmentCyclesRule.mjs"() {
7671
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/NoFragmentCyclesRule.mjs"() {
7334
7672
  "use strict";
7335
7673
  init_GraphQLError();
7336
7674
  }
7337
7675
  });
7338
7676
 
7339
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/NoUndefinedVariablesRule.mjs
7677
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/NoUndefinedVariablesRule.mjs
7340
7678
  function NoUndefinedVariablesRule(context) {
7341
7679
  let variableNameDefined = /* @__PURE__ */ Object.create(null);
7342
7680
  return {
@@ -7367,13 +7705,13 @@ spurious results.`);
7367
7705
  };
7368
7706
  }
7369
7707
  var init_NoUndefinedVariablesRule = __esm({
7370
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/NoUndefinedVariablesRule.mjs"() {
7708
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/NoUndefinedVariablesRule.mjs"() {
7371
7709
  "use strict";
7372
7710
  init_GraphQLError();
7373
7711
  }
7374
7712
  });
7375
7713
 
7376
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/NoUnusedFragmentsRule.mjs
7714
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/NoUnusedFragmentsRule.mjs
7377
7715
  function NoUnusedFragmentsRule(context) {
7378
7716
  const operationDefs = [];
7379
7717
  const fragmentDefs = [];
@@ -7411,13 +7749,13 @@ spurious results.`);
7411
7749
  };
7412
7750
  }
7413
7751
  var init_NoUnusedFragmentsRule = __esm({
7414
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/NoUnusedFragmentsRule.mjs"() {
7752
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/NoUnusedFragmentsRule.mjs"() {
7415
7753
  "use strict";
7416
7754
  init_GraphQLError();
7417
7755
  }
7418
7756
  });
7419
7757
 
7420
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/NoUnusedVariablesRule.mjs
7758
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/NoUnusedVariablesRule.mjs
7421
7759
  function NoUnusedVariablesRule(context) {
7422
7760
  let variableDefs = [];
7423
7761
  return {
@@ -7452,13 +7790,13 @@ spurious results.`);
7452
7790
  };
7453
7791
  }
7454
7792
  var init_NoUnusedVariablesRule = __esm({
7455
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/NoUnusedVariablesRule.mjs"() {
7793
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/NoUnusedVariablesRule.mjs"() {
7456
7794
  "use strict";
7457
7795
  init_GraphQLError();
7458
7796
  }
7459
7797
  });
7460
7798
 
7461
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/utilities/sortValueNode.mjs
7799
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/utilities/sortValueNode.mjs
7462
7800
  function sortValueNode(valueNode) {
7463
7801
  switch (valueNode.kind) {
7464
7802
  case Kind.OBJECT:
@@ -7484,14 +7822,14 @@ spurious results.`);
7484
7822
  );
7485
7823
  }
7486
7824
  var init_sortValueNode = __esm({
7487
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/utilities/sortValueNode.mjs"() {
7825
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/utilities/sortValueNode.mjs"() {
7488
7826
  "use strict";
7489
7827
  init_naturalCompare();
7490
7828
  init_kinds();
7491
7829
  }
7492
7830
  });
7493
7831
 
7494
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/OverlappingFieldsCanBeMergedRule.mjs
7832
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/OverlappingFieldsCanBeMergedRule.mjs
7495
7833
  function reasonMessage(reason) {
7496
7834
  if (Array.isArray(reason)) {
7497
7835
  return reason.map(
@@ -7501,6 +7839,7 @@ spurious results.`);
7501
7839
  return reason;
7502
7840
  }
7503
7841
  function OverlappingFieldsCanBeMergedRule(context) {
7842
+ const comparedFieldsAndFragmentPairs = new OrderedPairSet();
7504
7843
  const comparedFragmentPairs = new PairSet();
7505
7844
  const cachedFieldsAndFragmentNames = /* @__PURE__ */ new Map();
7506
7845
  return {
@@ -7508,6 +7847,7 @@ spurious results.`);
7508
7847
  const conflicts = findConflictsWithinSelectionSet(
7509
7848
  context,
7510
7849
  cachedFieldsAndFragmentNames,
7850
+ comparedFieldsAndFragmentPairs,
7511
7851
  comparedFragmentPairs,
7512
7852
  context.getParentType(),
7513
7853
  selectionSet
@@ -7526,7 +7866,7 @@ spurious results.`);
7526
7866
  }
7527
7867
  };
7528
7868
  }
7529
- function findConflictsWithinSelectionSet(context, cachedFieldsAndFragmentNames, comparedFragmentPairs, parentType, selectionSet) {
7869
+ function findConflictsWithinSelectionSet(context, cachedFieldsAndFragmentNames, comparedFieldsAndFragmentPairs, comparedFragmentPairs, parentType, selectionSet) {
7530
7870
  const conflicts = [];
7531
7871
  const [fieldMap, fragmentNames] = getFieldsAndFragmentNames(
7532
7872
  context,
@@ -7538,6 +7878,7 @@ spurious results.`);
7538
7878
  context,
7539
7879
  conflicts,
7540
7880
  cachedFieldsAndFragmentNames,
7881
+ comparedFieldsAndFragmentPairs,
7541
7882
  comparedFragmentPairs,
7542
7883
  fieldMap
7543
7884
  );
@@ -7547,6 +7888,7 @@ spurious results.`);
7547
7888
  context,
7548
7889
  conflicts,
7549
7890
  cachedFieldsAndFragmentNames,
7891
+ comparedFieldsAndFragmentPairs,
7550
7892
  comparedFragmentPairs,
7551
7893
  false,
7552
7894
  fieldMap,
@@ -7557,6 +7899,7 @@ spurious results.`);
7557
7899
  context,
7558
7900
  conflicts,
7559
7901
  cachedFieldsAndFragmentNames,
7902
+ comparedFieldsAndFragmentPairs,
7560
7903
  comparedFragmentPairs,
7561
7904
  false,
7562
7905
  fragmentNames[i],
@@ -7567,7 +7910,19 @@ spurious results.`);
7567
7910
  }
7568
7911
  return conflicts;
7569
7912
  }
7570
- function collectConflictsBetweenFieldsAndFragment(context, conflicts, cachedFieldsAndFragmentNames, comparedFragmentPairs, areMutuallyExclusive, fieldMap, fragmentName) {
7913
+ function collectConflictsBetweenFieldsAndFragment(context, conflicts, cachedFieldsAndFragmentNames, comparedFieldsAndFragmentPairs, comparedFragmentPairs, areMutuallyExclusive, fieldMap, fragmentName) {
7914
+ if (comparedFieldsAndFragmentPairs.has(
7915
+ fieldMap,
7916
+ fragmentName,
7917
+ areMutuallyExclusive
7918
+ )) {
7919
+ return;
7920
+ }
7921
+ comparedFieldsAndFragmentPairs.add(
7922
+ fieldMap,
7923
+ fragmentName,
7924
+ areMutuallyExclusive
7925
+ );
7571
7926
  const fragment = context.getFragment(fragmentName);
7572
7927
  if (!fragment) {
7573
7928
  return;
@@ -7584,28 +7939,18 @@ spurious results.`);
7584
7939
  context,
7585
7940
  conflicts,
7586
7941
  cachedFieldsAndFragmentNames,
7942
+ comparedFieldsAndFragmentPairs,
7587
7943
  comparedFragmentPairs,
7588
7944
  areMutuallyExclusive,
7589
7945
  fieldMap,
7590
7946
  fieldMap2
7591
7947
  );
7592
7948
  for (const referencedFragmentName of referencedFragmentNames) {
7593
- if (comparedFragmentPairs.has(
7594
- referencedFragmentName,
7595
- fragmentName,
7596
- areMutuallyExclusive
7597
- )) {
7598
- continue;
7599
- }
7600
- comparedFragmentPairs.add(
7601
- referencedFragmentName,
7602
- fragmentName,
7603
- areMutuallyExclusive
7604
- );
7605
7949
  collectConflictsBetweenFieldsAndFragment(
7606
7950
  context,
7607
7951
  conflicts,
7608
7952
  cachedFieldsAndFragmentNames,
7953
+ comparedFieldsAndFragmentPairs,
7609
7954
  comparedFragmentPairs,
7610
7955
  areMutuallyExclusive,
7611
7956
  fieldMap,
@@ -7613,7 +7958,7 @@ spurious results.`);
7613
7958
  );
7614
7959
  }
7615
7960
  }
7616
- function collectConflictsBetweenFragments(context, conflicts, cachedFieldsAndFragmentNames, comparedFragmentPairs, areMutuallyExclusive, fragmentName1, fragmentName2) {
7961
+ function collectConflictsBetweenFragments(context, conflicts, cachedFieldsAndFragmentNames, comparedFieldsAndFragmentPairs, comparedFragmentPairs, areMutuallyExclusive, fragmentName1, fragmentName2) {
7617
7962
  if (fragmentName1 === fragmentName2) {
7618
7963
  return;
7619
7964
  }
@@ -7644,6 +7989,7 @@ spurious results.`);
7644
7989
  context,
7645
7990
  conflicts,
7646
7991
  cachedFieldsAndFragmentNames,
7992
+ comparedFieldsAndFragmentPairs,
7647
7993
  comparedFragmentPairs,
7648
7994
  areMutuallyExclusive,
7649
7995
  fieldMap1,
@@ -7654,6 +8000,7 @@ spurious results.`);
7654
8000
  context,
7655
8001
  conflicts,
7656
8002
  cachedFieldsAndFragmentNames,
8003
+ comparedFieldsAndFragmentPairs,
7657
8004
  comparedFragmentPairs,
7658
8005
  areMutuallyExclusive,
7659
8006
  fragmentName1,
@@ -7665,6 +8012,7 @@ spurious results.`);
7665
8012
  context,
7666
8013
  conflicts,
7667
8014
  cachedFieldsAndFragmentNames,
8015
+ comparedFieldsAndFragmentPairs,
7668
8016
  comparedFragmentPairs,
7669
8017
  areMutuallyExclusive,
7670
8018
  referencedFragmentName1,
@@ -7672,7 +8020,7 @@ spurious results.`);
7672
8020
  );
7673
8021
  }
7674
8022
  }
7675
- function findConflictsBetweenSubSelectionSets(context, cachedFieldsAndFragmentNames, comparedFragmentPairs, areMutuallyExclusive, parentType1, selectionSet1, parentType2, selectionSet2) {
8023
+ function findConflictsBetweenSubSelectionSets(context, cachedFieldsAndFragmentNames, comparedFieldsAndFragmentPairs, comparedFragmentPairs, areMutuallyExclusive, parentType1, selectionSet1, parentType2, selectionSet2) {
7676
8024
  const conflicts = [];
7677
8025
  const [fieldMap1, fragmentNames1] = getFieldsAndFragmentNames(
7678
8026
  context,
@@ -7690,6 +8038,7 @@ spurious results.`);
7690
8038
  context,
7691
8039
  conflicts,
7692
8040
  cachedFieldsAndFragmentNames,
8041
+ comparedFieldsAndFragmentPairs,
7693
8042
  comparedFragmentPairs,
7694
8043
  areMutuallyExclusive,
7695
8044
  fieldMap1,
@@ -7700,6 +8049,7 @@ spurious results.`);
7700
8049
  context,
7701
8050
  conflicts,
7702
8051
  cachedFieldsAndFragmentNames,
8052
+ comparedFieldsAndFragmentPairs,
7703
8053
  comparedFragmentPairs,
7704
8054
  areMutuallyExclusive,
7705
8055
  fieldMap1,
@@ -7711,6 +8061,7 @@ spurious results.`);
7711
8061
  context,
7712
8062
  conflicts,
7713
8063
  cachedFieldsAndFragmentNames,
8064
+ comparedFieldsAndFragmentPairs,
7714
8065
  comparedFragmentPairs,
7715
8066
  areMutuallyExclusive,
7716
8067
  fieldMap2,
@@ -7723,6 +8074,7 @@ spurious results.`);
7723
8074
  context,
7724
8075
  conflicts,
7725
8076
  cachedFieldsAndFragmentNames,
8077
+ comparedFieldsAndFragmentPairs,
7726
8078
  comparedFragmentPairs,
7727
8079
  areMutuallyExclusive,
7728
8080
  fragmentName1,
@@ -7732,7 +8084,7 @@ spurious results.`);
7732
8084
  }
7733
8085
  return conflicts;
7734
8086
  }
7735
- function collectConflictsWithin(context, conflicts, cachedFieldsAndFragmentNames, comparedFragmentPairs, fieldMap) {
8087
+ function collectConflictsWithin(context, conflicts, cachedFieldsAndFragmentNames, comparedFieldsAndFragmentPairs, comparedFragmentPairs, fieldMap) {
7736
8088
  for (const [responseName, fields] of Object.entries(fieldMap)) {
7737
8089
  if (fields.length > 1) {
7738
8090
  for (let i = 0; i < fields.length; i++) {
@@ -7740,6 +8092,7 @@ spurious results.`);
7740
8092
  const conflict = findConflict(
7741
8093
  context,
7742
8094
  cachedFieldsAndFragmentNames,
8095
+ comparedFieldsAndFragmentPairs,
7743
8096
  comparedFragmentPairs,
7744
8097
  false,
7745
8098
  // within one collection is never mutually exclusive
@@ -7755,7 +8108,7 @@ spurious results.`);
7755
8108
  }
7756
8109
  }
7757
8110
  }
7758
- function collectConflictsBetween(context, conflicts, cachedFieldsAndFragmentNames, comparedFragmentPairs, parentFieldsAreMutuallyExclusive, fieldMap1, fieldMap2) {
8111
+ function collectConflictsBetween(context, conflicts, cachedFieldsAndFragmentNames, comparedFieldsAndFragmentPairs, comparedFragmentPairs, parentFieldsAreMutuallyExclusive, fieldMap1, fieldMap2) {
7759
8112
  for (const [responseName, fields1] of Object.entries(fieldMap1)) {
7760
8113
  const fields2 = fieldMap2[responseName];
7761
8114
  if (fields2) {
@@ -7764,6 +8117,7 @@ spurious results.`);
7764
8117
  const conflict = findConflict(
7765
8118
  context,
7766
8119
  cachedFieldsAndFragmentNames,
8120
+ comparedFieldsAndFragmentPairs,
7767
8121
  comparedFragmentPairs,
7768
8122
  parentFieldsAreMutuallyExclusive,
7769
8123
  responseName,
@@ -7778,7 +8132,7 @@ spurious results.`);
7778
8132
  }
7779
8133
  }
7780
8134
  }
7781
- function findConflict(context, cachedFieldsAndFragmentNames, comparedFragmentPairs, parentFieldsAreMutuallyExclusive, responseName, field1, field2) {
8135
+ function findConflict(context, cachedFieldsAndFragmentNames, comparedFieldsAndFragmentPairs, comparedFragmentPairs, parentFieldsAreMutuallyExclusive, responseName, field1, field2) {
7782
8136
  const [parentType1, node1, def1] = field1;
7783
8137
  const [parentType2, node2, def2] = field2;
7784
8138
  const areMutuallyExclusive = parentFieldsAreMutuallyExclusive || parentType1 !== parentType2 && isObjectType(parentType1) && isObjectType(parentType2);
@@ -7820,6 +8174,7 @@ spurious results.`);
7820
8174
  const conflicts = findConflictsBetweenSubSelectionSets(
7821
8175
  context,
7822
8176
  cachedFieldsAndFragmentNames,
8177
+ comparedFieldsAndFragmentPairs,
7823
8178
  comparedFragmentPairs,
7824
8179
  areMutuallyExclusive,
7825
8180
  getNamedType(type1),
@@ -7947,9 +8302,9 @@ spurious results.`);
7947
8302
  ];
7948
8303
  }
7949
8304
  }
7950
- var PairSet;
8305
+ var OrderedPairSet, PairSet;
7951
8306
  var init_OverlappingFieldsCanBeMergedRule = __esm({
7952
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/OverlappingFieldsCanBeMergedRule.mjs"() {
8307
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/OverlappingFieldsCanBeMergedRule.mjs"() {
7953
8308
  "use strict";
7954
8309
  init_inspect();
7955
8310
  init_GraphQLError();
@@ -7958,33 +8313,46 @@ spurious results.`);
7958
8313
  init_definition();
7959
8314
  init_sortValueNode();
7960
8315
  init_typeFromAST();
7961
- PairSet = class {
8316
+ OrderedPairSet = class {
7962
8317
  constructor() {
7963
8318
  this._data = /* @__PURE__ */ new Map();
7964
8319
  }
7965
- has(a, b, areMutuallyExclusive) {
8320
+ has(a, b, weaklyPresent) {
7966
8321
  var _this$_data$get;
7967
- const [key1, key2] = a < b ? [a, b] : [b, a];
7968
- const result = (_this$_data$get = this._data.get(key1)) === null || _this$_data$get === void 0 ? void 0 : _this$_data$get.get(key2);
8322
+ const result = (_this$_data$get = this._data.get(a)) === null || _this$_data$get === void 0 ? void 0 : _this$_data$get.get(b);
7969
8323
  if (result === void 0) {
7970
8324
  return false;
7971
8325
  }
7972
- return areMutuallyExclusive ? true : areMutuallyExclusive === result;
8326
+ return weaklyPresent ? true : weaklyPresent === result;
7973
8327
  }
7974
- add(a, b, areMutuallyExclusive) {
7975
- const [key1, key2] = a < b ? [a, b] : [b, a];
7976
- const map = this._data.get(key1);
8328
+ add(a, b, weaklyPresent) {
8329
+ const map = this._data.get(a);
7977
8330
  if (map === void 0) {
7978
- this._data.set(key1, /* @__PURE__ */ new Map([[key2, areMutuallyExclusive]]));
8331
+ this._data.set(a, /* @__PURE__ */ new Map([[b, weaklyPresent]]));
8332
+ } else {
8333
+ map.set(b, weaklyPresent);
8334
+ }
8335
+ }
8336
+ };
8337
+ PairSet = class {
8338
+ constructor() {
8339
+ this._orderedPairSet = new OrderedPairSet();
8340
+ }
8341
+ has(a, b, weaklyPresent) {
8342
+ return a < b ? this._orderedPairSet.has(a, b, weaklyPresent) : this._orderedPairSet.has(b, a, weaklyPresent);
8343
+ }
8344
+ add(a, b, weaklyPresent) {
8345
+ if (a < b) {
8346
+ this._orderedPairSet.add(a, b, weaklyPresent);
7979
8347
  } else {
7980
- map.set(key2, areMutuallyExclusive);
8348
+ this._orderedPairSet.add(b, a, weaklyPresent);
7981
8349
  }
7982
8350
  }
7983
8351
  };
7984
8352
  }
7985
8353
  });
7986
8354
 
7987
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/PossibleFragmentSpreadsRule.mjs
8355
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/PossibleFragmentSpreadsRule.mjs
7988
8356
  function PossibleFragmentSpreadsRule(context) {
7989
8357
  return {
7990
8358
  InlineFragment(node) {
@@ -8032,7 +8400,7 @@ spurious results.`);
8032
8400
  }
8033
8401
  }
8034
8402
  var init_PossibleFragmentSpreadsRule = __esm({
8035
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/PossibleFragmentSpreadsRule.mjs"() {
8403
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/PossibleFragmentSpreadsRule.mjs"() {
8036
8404
  "use strict";
8037
8405
  init_inspect();
8038
8406
  init_GraphQLError();
@@ -8042,7 +8410,7 @@ spurious results.`);
8042
8410
  }
8043
8411
  });
8044
8412
 
8045
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/PossibleTypeExtensionsRule.mjs
8413
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/PossibleTypeExtensionsRule.mjs
8046
8414
  function PossibleTypeExtensionsRule(context) {
8047
8415
  const schema = context.getSchema();
8048
8416
  const definedTypes = /* @__PURE__ */ Object.create(null);
@@ -8138,7 +8506,7 @@ spurious results.`);
8138
8506
  }
8139
8507
  var defKindToExtKind;
8140
8508
  var init_PossibleTypeExtensionsRule = __esm({
8141
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/PossibleTypeExtensionsRule.mjs"() {
8509
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/PossibleTypeExtensionsRule.mjs"() {
8142
8510
  "use strict";
8143
8511
  init_didYouMean();
8144
8512
  init_inspect();
@@ -8159,7 +8527,7 @@ spurious results.`);
8159
8527
  }
8160
8528
  });
8161
8529
 
8162
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/ProvidedRequiredArgumentsRule.mjs
8530
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/ProvidedRequiredArgumentsRule.mjs
8163
8531
  function ProvidedRequiredArgumentsRule(context) {
8164
8532
  return {
8165
8533
  // eslint-disable-next-line new-cap
@@ -8248,7 +8616,7 @@ spurious results.`);
8248
8616
  return arg.type.kind === Kind.NON_NULL_TYPE && arg.defaultValue == null;
8249
8617
  }
8250
8618
  var init_ProvidedRequiredArgumentsRule = __esm({
8251
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/ProvidedRequiredArgumentsRule.mjs"() {
8619
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/ProvidedRequiredArgumentsRule.mjs"() {
8252
8620
  "use strict";
8253
8621
  init_inspect();
8254
8622
  init_keyMap();
@@ -8260,7 +8628,7 @@ spurious results.`);
8260
8628
  }
8261
8629
  });
8262
8630
 
8263
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/ScalarLeafsRule.mjs
8631
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/ScalarLeafsRule.mjs
8264
8632
  function ScalarLeafsRule(context) {
8265
8633
  return {
8266
8634
  Field(node) {
@@ -8291,13 +8659,24 @@ spurious results.`);
8291
8659
  }
8292
8660
  )
8293
8661
  );
8662
+ } else if (selectionSet.selections.length === 0) {
8663
+ const fieldName = node.name.value;
8664
+ const typeStr = inspect(type);
8665
+ context.reportError(
8666
+ new GraphQLError(
8667
+ `Field "${fieldName}" of type "${typeStr}" must have at least one field selected.`,
8668
+ {
8669
+ nodes: node
8670
+ }
8671
+ )
8672
+ );
8294
8673
  }
8295
8674
  }
8296
8675
  }
8297
8676
  };
8298
8677
  }
8299
8678
  var init_ScalarLeafsRule = __esm({
8300
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/ScalarLeafsRule.mjs"() {
8679
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/ScalarLeafsRule.mjs"() {
8301
8680
  "use strict";
8302
8681
  init_inspect();
8303
8682
  init_GraphQLError();
@@ -8305,19 +8684,19 @@ spurious results.`);
8305
8684
  }
8306
8685
  });
8307
8686
 
8308
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/jsutils/printPathArray.mjs
8687
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/jsutils/printPathArray.mjs
8309
8688
  function printPathArray(path) {
8310
8689
  return path.map(
8311
8690
  (key) => typeof key === "number" ? "[" + key.toString() + "]" : "." + key
8312
8691
  ).join("");
8313
8692
  }
8314
8693
  var init_printPathArray = __esm({
8315
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/jsutils/printPathArray.mjs"() {
8694
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/jsutils/printPathArray.mjs"() {
8316
8695
  "use strict";
8317
8696
  }
8318
8697
  });
8319
8698
 
8320
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/jsutils/Path.mjs
8699
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/jsutils/Path.mjs
8321
8700
  function addPath(prev, key, typename) {
8322
8701
  return {
8323
8702
  prev,
@@ -8335,12 +8714,12 @@ spurious results.`);
8335
8714
  return flattened.reverse();
8336
8715
  }
8337
8716
  var init_Path = __esm({
8338
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/jsutils/Path.mjs"() {
8717
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/jsutils/Path.mjs"() {
8339
8718
  "use strict";
8340
8719
  }
8341
8720
  });
8342
8721
 
8343
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/utilities/coerceInputValue.mjs
8722
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/utilities/coerceInputValue.mjs
8344
8723
  function coerceInputValue(inputValue, type, onError = defaultOnError) {
8345
8724
  return coerceInputValueImpl(inputValue, type, onError, void 0);
8346
8725
  }
@@ -8380,7 +8759,7 @@ spurious results.`);
8380
8759
  return [coerceInputValueImpl(inputValue, itemType, onError, path)];
8381
8760
  }
8382
8761
  if (isInputObjectType(type)) {
8383
- if (!isObjectLike(inputValue)) {
8762
+ if (!isObjectLike(inputValue) || Array.isArray(inputValue)) {
8384
8763
  onError(
8385
8764
  pathToArray(path),
8386
8765
  inputValue,
@@ -8429,6 +8808,27 @@ spurious results.`);
8429
8808
  );
8430
8809
  }
8431
8810
  }
8811
+ if (type.isOneOf) {
8812
+ const keys = Object.keys(coercedValue);
8813
+ if (keys.length !== 1) {
8814
+ onError(
8815
+ pathToArray(path),
8816
+ inputValue,
8817
+ new GraphQLError(
8818
+ `Exactly one key must be specified for OneOf type "${type.name}".`
8819
+ )
8820
+ );
8821
+ }
8822
+ const key = keys[0];
8823
+ const value = coercedValue[key];
8824
+ if (value === null) {
8825
+ onError(
8826
+ pathToArray(path).concat(key),
8827
+ value,
8828
+ new GraphQLError(`Field "${key}" must be non-null.`)
8829
+ );
8830
+ }
8831
+ }
8432
8832
  return coercedValue;
8433
8833
  }
8434
8834
  if (isLeafType(type)) {
@@ -8461,7 +8861,7 @@ spurious results.`);
8461
8861
  invariant2(false, "Unexpected input type: " + inspect(type));
8462
8862
  }
8463
8863
  var init_coerceInputValue = __esm({
8464
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/utilities/coerceInputValue.mjs"() {
8864
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/utilities/coerceInputValue.mjs"() {
8465
8865
  "use strict";
8466
8866
  init_didYouMean();
8467
8867
  init_inspect();
@@ -8476,7 +8876,7 @@ spurious results.`);
8476
8876
  }
8477
8877
  });
8478
8878
 
8479
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/utilities/valueFromAST.mjs
8879
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/utilities/valueFromAST.mjs
8480
8880
  function valueFromAST(valueNode, type, variables) {
8481
8881
  if (!valueNode) {
8482
8882
  return;
@@ -8549,6 +8949,15 @@ spurious results.`);
8549
8949
  }
8550
8950
  coercedObj[field.name] = fieldValue;
8551
8951
  }
8952
+ if (type.isOneOf) {
8953
+ const keys = Object.keys(coercedObj);
8954
+ if (keys.length !== 1) {
8955
+ return;
8956
+ }
8957
+ if (coercedObj[keys[0]] === null) {
8958
+ return;
8959
+ }
8960
+ }
8552
8961
  return coercedObj;
8553
8962
  }
8554
8963
  if (isLeafType(type)) {
@@ -8569,7 +8978,7 @@ spurious results.`);
8569
8978
  return valueNode.kind === Kind.VARIABLE && (variables == null || variables[valueNode.name.value] === void 0);
8570
8979
  }
8571
8980
  var init_valueFromAST = __esm({
8572
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/utilities/valueFromAST.mjs"() {
8981
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/utilities/valueFromAST.mjs"() {
8573
8982
  "use strict";
8574
8983
  init_inspect();
8575
8984
  init_invariant();
@@ -8579,7 +8988,7 @@ spurious results.`);
8579
8988
  }
8580
8989
  });
8581
8990
 
8582
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/execution/values.mjs
8991
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/execution/values.mjs
8583
8992
  function getVariableValues(schema, varDefNodes, inputs, options) {
8584
8993
  const errors = [];
8585
8994
  const maxErrors = options === null || options === void 0 ? void 0 : options.maxErrors;
@@ -8749,7 +9158,7 @@ spurious results.`);
8749
9158
  return Object.prototype.hasOwnProperty.call(obj, prop);
8750
9159
  }
8751
9160
  var init_values = __esm({
8752
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/execution/values.mjs"() {
9161
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/execution/values.mjs"() {
8753
9162
  "use strict";
8754
9163
  init_inspect();
8755
9164
  init_keyMap();
@@ -8764,7 +9173,7 @@ spurious results.`);
8764
9173
  }
8765
9174
  });
8766
9175
 
8767
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/execution/collectFields.mjs
9176
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/execution/collectFields.mjs
8768
9177
  function collectFields(schema, fragments, variableValues, runtimeType, selectionSet) {
8769
9178
  const fields = /* @__PURE__ */ new Map();
8770
9179
  collectFieldsImpl(
@@ -8884,7 +9293,7 @@ spurious results.`);
8884
9293
  return node.alias ? node.alias.value : node.name.value;
8885
9294
  }
8886
9295
  var init_collectFields = __esm({
8887
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/execution/collectFields.mjs"() {
9296
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/execution/collectFields.mjs"() {
8888
9297
  "use strict";
8889
9298
  init_kinds();
8890
9299
  init_definition();
@@ -8894,7 +9303,7 @@ spurious results.`);
8894
9303
  }
8895
9304
  });
8896
9305
 
8897
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/SingleFieldSubscriptionsRule.mjs
9306
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/SingleFieldSubscriptionsRule.mjs
8898
9307
  function SingleFieldSubscriptionsRule(context) {
8899
9308
  return {
8900
9309
  OperationDefinition(node) {
@@ -8951,7 +9360,7 @@ spurious results.`);
8951
9360
  };
8952
9361
  }
8953
9362
  var init_SingleFieldSubscriptionsRule = __esm({
8954
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/SingleFieldSubscriptionsRule.mjs"() {
9363
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/SingleFieldSubscriptionsRule.mjs"() {
8955
9364
  "use strict";
8956
9365
  init_GraphQLError();
8957
9366
  init_kinds();
@@ -8959,7 +9368,7 @@ spurious results.`);
8959
9368
  }
8960
9369
  });
8961
9370
 
8962
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/jsutils/groupBy.mjs
9371
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/jsutils/groupBy.mjs
8963
9372
  function groupBy(list, keyFn) {
8964
9373
  const result = /* @__PURE__ */ new Map();
8965
9374
  for (const item of list) {
@@ -8974,12 +9383,12 @@ spurious results.`);
8974
9383
  return result;
8975
9384
  }
8976
9385
  var init_groupBy = __esm({
8977
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/jsutils/groupBy.mjs"() {
9386
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/jsutils/groupBy.mjs"() {
8978
9387
  "use strict";
8979
9388
  }
8980
9389
  });
8981
9390
 
8982
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/UniqueArgumentDefinitionNamesRule.mjs
9391
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/UniqueArgumentDefinitionNamesRule.mjs
8983
9392
  function UniqueArgumentDefinitionNamesRule(context) {
8984
9393
  return {
8985
9394
  DirectiveDefinition(directiveNode) {
@@ -9022,14 +9431,14 @@ spurious results.`);
9022
9431
  }
9023
9432
  }
9024
9433
  var init_UniqueArgumentDefinitionNamesRule = __esm({
9025
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/UniqueArgumentDefinitionNamesRule.mjs"() {
9434
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/UniqueArgumentDefinitionNamesRule.mjs"() {
9026
9435
  "use strict";
9027
9436
  init_groupBy();
9028
9437
  init_GraphQLError();
9029
9438
  }
9030
9439
  });
9031
9440
 
9032
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/UniqueArgumentNamesRule.mjs
9441
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/UniqueArgumentNamesRule.mjs
9033
9442
  function UniqueArgumentNamesRule(context) {
9034
9443
  return {
9035
9444
  Field: checkArgUniqueness,
@@ -9054,14 +9463,14 @@ spurious results.`);
9054
9463
  }
9055
9464
  }
9056
9465
  var init_UniqueArgumentNamesRule = __esm({
9057
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/UniqueArgumentNamesRule.mjs"() {
9466
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/UniqueArgumentNamesRule.mjs"() {
9058
9467
  "use strict";
9059
9468
  init_groupBy();
9060
9469
  init_GraphQLError();
9061
9470
  }
9062
9471
  });
9063
9472
 
9064
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/UniqueDirectiveNamesRule.mjs
9473
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/UniqueDirectiveNamesRule.mjs
9065
9474
  function UniqueDirectiveNamesRule(context) {
9066
9475
  const knownDirectiveNames = /* @__PURE__ */ Object.create(null);
9067
9476
  const schema = context.getSchema();
@@ -9096,13 +9505,13 @@ spurious results.`);
9096
9505
  };
9097
9506
  }
9098
9507
  var init_UniqueDirectiveNamesRule = __esm({
9099
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/UniqueDirectiveNamesRule.mjs"() {
9508
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/UniqueDirectiveNamesRule.mjs"() {
9100
9509
  "use strict";
9101
9510
  init_GraphQLError();
9102
9511
  }
9103
9512
  });
9104
9513
 
9105
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/UniqueDirectivesPerLocationRule.mjs
9514
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/UniqueDirectivesPerLocationRule.mjs
9106
9515
  function UniqueDirectivesPerLocationRule(context) {
9107
9516
  const uniqueDirectiveMap = /* @__PURE__ */ Object.create(null);
9108
9517
  const schema = context.getSchema();
@@ -9159,7 +9568,7 @@ spurious results.`);
9159
9568
  };
9160
9569
  }
9161
9570
  var init_UniqueDirectivesPerLocationRule = __esm({
9162
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/UniqueDirectivesPerLocationRule.mjs"() {
9571
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/UniqueDirectivesPerLocationRule.mjs"() {
9163
9572
  "use strict";
9164
9573
  init_GraphQLError();
9165
9574
  init_kinds();
@@ -9168,7 +9577,7 @@ spurious results.`);
9168
9577
  }
9169
9578
  });
9170
9579
 
9171
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/UniqueEnumValueNamesRule.mjs
9580
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/UniqueEnumValueNamesRule.mjs
9172
9581
  function UniqueEnumValueNamesRule(context) {
9173
9582
  const schema = context.getSchema();
9174
9583
  const existingTypeMap = schema ? schema.getTypeMap() : /* @__PURE__ */ Object.create(null);
@@ -9214,14 +9623,14 @@ spurious results.`);
9214
9623
  }
9215
9624
  }
9216
9625
  var init_UniqueEnumValueNamesRule = __esm({
9217
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/UniqueEnumValueNamesRule.mjs"() {
9626
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/UniqueEnumValueNamesRule.mjs"() {
9218
9627
  "use strict";
9219
9628
  init_GraphQLError();
9220
9629
  init_definition();
9221
9630
  }
9222
9631
  });
9223
9632
 
9224
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/UniqueFieldDefinitionNamesRule.mjs
9633
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/UniqueFieldDefinitionNamesRule.mjs
9225
9634
  function UniqueFieldDefinitionNamesRule(context) {
9226
9635
  const schema = context.getSchema();
9227
9636
  const existingTypeMap = schema ? schema.getTypeMap() : /* @__PURE__ */ Object.create(null);
@@ -9276,14 +9685,14 @@ spurious results.`);
9276
9685
  return false;
9277
9686
  }
9278
9687
  var init_UniqueFieldDefinitionNamesRule = __esm({
9279
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/UniqueFieldDefinitionNamesRule.mjs"() {
9688
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/UniqueFieldDefinitionNamesRule.mjs"() {
9280
9689
  "use strict";
9281
9690
  init_GraphQLError();
9282
9691
  init_definition();
9283
9692
  }
9284
9693
  });
9285
9694
 
9286
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/UniqueFragmentNamesRule.mjs
9695
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/UniqueFragmentNamesRule.mjs
9287
9696
  function UniqueFragmentNamesRule(context) {
9288
9697
  const knownFragmentNames = /* @__PURE__ */ Object.create(null);
9289
9698
  return {
@@ -9307,13 +9716,13 @@ spurious results.`);
9307
9716
  };
9308
9717
  }
9309
9718
  var init_UniqueFragmentNamesRule = __esm({
9310
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/UniqueFragmentNamesRule.mjs"() {
9719
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/UniqueFragmentNamesRule.mjs"() {
9311
9720
  "use strict";
9312
9721
  init_GraphQLError();
9313
9722
  }
9314
9723
  });
9315
9724
 
9316
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/UniqueInputFieldNamesRule.mjs
9725
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/UniqueInputFieldNamesRule.mjs
9317
9726
  function UniqueInputFieldNamesRule(context) {
9318
9727
  const knownNameStack = [];
9319
9728
  let knownNames = /* @__PURE__ */ Object.create(null);
@@ -9347,14 +9756,14 @@ spurious results.`);
9347
9756
  };
9348
9757
  }
9349
9758
  var init_UniqueInputFieldNamesRule = __esm({
9350
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/UniqueInputFieldNamesRule.mjs"() {
9759
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/UniqueInputFieldNamesRule.mjs"() {
9351
9760
  "use strict";
9352
9761
  init_invariant();
9353
9762
  init_GraphQLError();
9354
9763
  }
9355
9764
  });
9356
9765
 
9357
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/UniqueOperationNamesRule.mjs
9766
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/UniqueOperationNamesRule.mjs
9358
9767
  function UniqueOperationNamesRule(context) {
9359
9768
  const knownOperationNames = /* @__PURE__ */ Object.create(null);
9360
9769
  return {
@@ -9383,13 +9792,13 @@ spurious results.`);
9383
9792
  };
9384
9793
  }
9385
9794
  var init_UniqueOperationNamesRule = __esm({
9386
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/UniqueOperationNamesRule.mjs"() {
9795
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/UniqueOperationNamesRule.mjs"() {
9387
9796
  "use strict";
9388
9797
  init_GraphQLError();
9389
9798
  }
9390
9799
  });
9391
9800
 
9392
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/UniqueOperationTypesRule.mjs
9801
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/UniqueOperationTypesRule.mjs
9393
9802
  function UniqueOperationTypesRule(context) {
9394
9803
  const schema = context.getSchema();
9395
9804
  const definedOperationTypes = /* @__PURE__ */ Object.create(null);
@@ -9434,13 +9843,13 @@ spurious results.`);
9434
9843
  }
9435
9844
  }
9436
9845
  var init_UniqueOperationTypesRule = __esm({
9437
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/UniqueOperationTypesRule.mjs"() {
9846
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/UniqueOperationTypesRule.mjs"() {
9438
9847
  "use strict";
9439
9848
  init_GraphQLError();
9440
9849
  }
9441
9850
  });
9442
9851
 
9443
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/UniqueTypeNamesRule.mjs
9852
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/UniqueTypeNamesRule.mjs
9444
9853
  function UniqueTypeNamesRule(context) {
9445
9854
  const knownTypeNames = /* @__PURE__ */ Object.create(null);
9446
9855
  const schema = context.getSchema();
@@ -9478,13 +9887,13 @@ spurious results.`);
9478
9887
  }
9479
9888
  }
9480
9889
  var init_UniqueTypeNamesRule = __esm({
9481
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/UniqueTypeNamesRule.mjs"() {
9890
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/UniqueTypeNamesRule.mjs"() {
9482
9891
  "use strict";
9483
9892
  init_GraphQLError();
9484
9893
  }
9485
9894
  });
9486
9895
 
9487
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/UniqueVariableNamesRule.mjs
9896
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/UniqueVariableNamesRule.mjs
9488
9897
  function UniqueVariableNamesRule(context) {
9489
9898
  return {
9490
9899
  OperationDefinition(operationNode) {
@@ -9510,16 +9919,25 @@ spurious results.`);
9510
9919
  };
9511
9920
  }
9512
9921
  var init_UniqueVariableNamesRule = __esm({
9513
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/UniqueVariableNamesRule.mjs"() {
9922
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/UniqueVariableNamesRule.mjs"() {
9514
9923
  "use strict";
9515
9924
  init_groupBy();
9516
9925
  init_GraphQLError();
9517
9926
  }
9518
9927
  });
9519
9928
 
9520
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/ValuesOfCorrectTypeRule.mjs
9929
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/ValuesOfCorrectTypeRule.mjs
9521
9930
  function ValuesOfCorrectTypeRule(context) {
9931
+ let variableDefinitions = {};
9522
9932
  return {
9933
+ OperationDefinition: {
9934
+ enter() {
9935
+ variableDefinitions = {};
9936
+ }
9937
+ },
9938
+ VariableDefinition(definition) {
9939
+ variableDefinitions[definition.variable.name.value] = definition;
9940
+ },
9523
9941
  ListValue(node) {
9524
9942
  const type = getNullableType(context.getParentInputType());
9525
9943
  if (!isListType(type)) {
@@ -9548,6 +9966,9 @@ spurious results.`);
9548
9966
  );
9549
9967
  }
9550
9968
  }
9969
+ if (type.isOneOf) {
9970
+ validateOneOfInputObject(context, node, type, fieldNodeMap);
9971
+ }
9551
9972
  },
9552
9973
  ObjectField(node) {
9553
9974
  const parentType = getNamedType(context.getParentInputType());
@@ -9639,20 +10060,46 @@ spurious results.`);
9639
10060
  }
9640
10061
  }
9641
10062
  }
10063
+ function validateOneOfInputObject(context, node, type, fieldNodeMap) {
10064
+ var _fieldNodeMap$keys$;
10065
+ const keys = Object.keys(fieldNodeMap);
10066
+ const isNotExactlyOneField = keys.length !== 1;
10067
+ if (isNotExactlyOneField) {
10068
+ context.reportError(
10069
+ new GraphQLError(
10070
+ `OneOf Input Object "${type.name}" must specify exactly one key.`,
10071
+ {
10072
+ nodes: [node]
10073
+ }
10074
+ )
10075
+ );
10076
+ return;
10077
+ }
10078
+ const value = (_fieldNodeMap$keys$ = fieldNodeMap[keys[0]]) === null || _fieldNodeMap$keys$ === void 0 ? void 0 : _fieldNodeMap$keys$.value;
10079
+ const isNullLiteral = !value || value.kind === Kind.NULL;
10080
+ if (isNullLiteral) {
10081
+ context.reportError(
10082
+ new GraphQLError(`Field "${type.name}.${keys[0]}" must be non-null.`, {
10083
+ nodes: [node]
10084
+ })
10085
+ );
10086
+ }
10087
+ }
9642
10088
  var init_ValuesOfCorrectTypeRule = __esm({
9643
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/ValuesOfCorrectTypeRule.mjs"() {
10089
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/ValuesOfCorrectTypeRule.mjs"() {
9644
10090
  "use strict";
9645
10091
  init_didYouMean();
9646
10092
  init_inspect();
9647
10093
  init_keyMap();
9648
10094
  init_suggestionList();
9649
10095
  init_GraphQLError();
10096
+ init_kinds();
9650
10097
  init_printer();
9651
10098
  init_definition();
9652
10099
  }
9653
10100
  });
9654
10101
 
9655
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/VariablesAreInputTypesRule.mjs
10102
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/VariablesAreInputTypesRule.mjs
9656
10103
  function VariablesAreInputTypesRule(context) {
9657
10104
  return {
9658
10105
  VariableDefinition(node) {
@@ -9673,7 +10120,7 @@ spurious results.`);
9673
10120
  };
9674
10121
  }
9675
10122
  var init_VariablesAreInputTypesRule = __esm({
9676
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/VariablesAreInputTypesRule.mjs"() {
10123
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/VariablesAreInputTypesRule.mjs"() {
9677
10124
  "use strict";
9678
10125
  init_GraphQLError();
9679
10126
  init_printer();
@@ -9682,7 +10129,7 @@ spurious results.`);
9682
10129
  }
9683
10130
  });
9684
10131
 
9685
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/VariablesInAllowedPositionRule.mjs
10132
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/VariablesInAllowedPositionRule.mjs
9686
10133
  function VariablesInAllowedPositionRule(context) {
9687
10134
  let varDefMap = /* @__PURE__ */ Object.create(null);
9688
10135
  return {
@@ -9692,7 +10139,7 @@ spurious results.`);
9692
10139
  },
9693
10140
  leave(operation) {
9694
10141
  const usages = context.getRecursiveVariableUsages(operation);
9695
- for (const { node, type, defaultValue } of usages) {
10142
+ for (const { node, type, defaultValue, parentType } of usages) {
9696
10143
  const varName = node.name.value;
9697
10144
  const varDef = varDefMap[varName];
9698
10145
  if (varDef && type) {
@@ -9716,6 +10163,16 @@ spurious results.`);
9716
10163
  )
9717
10164
  );
9718
10165
  }
10166
+ if (isInputObjectType(parentType) && parentType.isOneOf && isNullableType(varType)) {
10167
+ context.reportError(
10168
+ new GraphQLError(
10169
+ `Variable "$${varName}" is of type "${varType}" but must be non-nullable to be used for OneOf Input Object "${parentType}".`,
10170
+ {
10171
+ nodes: [varDef, node]
10172
+ }
10173
+ )
10174
+ );
10175
+ }
9719
10176
  }
9720
10177
  }
9721
10178
  }
@@ -9738,7 +10195,7 @@ spurious results.`);
9738
10195
  return isTypeSubTypeOf(schema, varType, locationType);
9739
10196
  }
9740
10197
  var init_VariablesInAllowedPositionRule = __esm({
9741
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/VariablesInAllowedPositionRule.mjs"() {
10198
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/VariablesInAllowedPositionRule.mjs"() {
9742
10199
  "use strict";
9743
10200
  init_inspect();
9744
10201
  init_GraphQLError();
@@ -9749,10 +10206,10 @@ spurious results.`);
9749
10206
  }
9750
10207
  });
9751
10208
 
9752
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/specifiedRules.mjs
9753
- var specifiedRules, specifiedSDLRules;
10209
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/specifiedRules.mjs
10210
+ var recommendedRules, specifiedRules, specifiedSDLRules;
9754
10211
  var init_specifiedRules = __esm({
9755
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/specifiedRules.mjs"() {
10212
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/specifiedRules.mjs"() {
9756
10213
  "use strict";
9757
10214
  init_ExecutableDefinitionsRule();
9758
10215
  init_FieldsOnCorrectTypeRule();
@@ -9763,6 +10220,7 @@ spurious results.`);
9763
10220
  init_KnownTypeNamesRule();
9764
10221
  init_LoneAnonymousOperationRule();
9765
10222
  init_LoneSchemaDefinitionRule();
10223
+ init_MaxIntrospectionDepthRule();
9766
10224
  init_NoFragmentCyclesRule();
9767
10225
  init_NoUndefinedVariablesRule();
9768
10226
  init_NoUnusedFragmentsRule();
@@ -9788,6 +10246,7 @@ spurious results.`);
9788
10246
  init_ValuesOfCorrectTypeRule();
9789
10247
  init_VariablesAreInputTypesRule();
9790
10248
  init_VariablesInAllowedPositionRule();
10249
+ recommendedRules = Object.freeze([MaxIntrospectionDepthRule]);
9791
10250
  specifiedRules = Object.freeze([
9792
10251
  ExecutableDefinitionsRule,
9793
10252
  UniqueOperationNamesRule,
@@ -9814,7 +10273,8 @@ spurious results.`);
9814
10273
  ProvidedRequiredArgumentsRule,
9815
10274
  VariablesInAllowedPositionRule,
9816
10275
  OverlappingFieldsCanBeMergedRule,
9817
- UniqueInputFieldNamesRule
10276
+ UniqueInputFieldNamesRule,
10277
+ ...recommendedRules
9818
10278
  ]);
9819
10279
  specifiedSDLRules = Object.freeze([
9820
10280
  LoneSchemaDefinitionRule,
@@ -9836,10 +10296,10 @@ spurious results.`);
9836
10296
  }
9837
10297
  });
9838
10298
 
9839
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/ValidationContext.mjs
10299
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/ValidationContext.mjs
9840
10300
  var ASTValidationContext, SDLValidationContext, ValidationContext;
9841
10301
  var init_ValidationContext = __esm({
9842
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/ValidationContext.mjs"() {
10302
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/ValidationContext.mjs"() {
9843
10303
  "use strict";
9844
10304
  init_kinds();
9845
10305
  init_visitor();
@@ -9959,7 +10419,8 @@ spurious results.`);
9959
10419
  newUsages.push({
9960
10420
  node: variable,
9961
10421
  type: typeInfo.getInputType(),
9962
- defaultValue: typeInfo.getDefaultValue()
10422
+ defaultValue: typeInfo.getDefaultValue(),
10423
+ parentType: typeInfo.getParentInputType()
9963
10424
  });
9964
10425
  }
9965
10426
  })
@@ -10008,7 +10469,7 @@ spurious results.`);
10008
10469
  }
10009
10470
  });
10010
10471
 
10011
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/validate.mjs
10472
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/validate.mjs
10012
10473
  function validate2(schema, documentAST, rules2 = specifiedRules, options, typeInfo = new TypeInfo(schema)) {
10013
10474
  var _options$maxErrors;
10014
10475
  const maxErrors = (_options$maxErrors = options === null || options === void 0 ? void 0 : options.maxErrors) !== null && _options$maxErrors !== void 0 ? _options$maxErrors : 100;
@@ -10068,7 +10529,7 @@ spurious results.`);
10068
10529
  }
10069
10530
  }
10070
10531
  var init_validate2 = __esm({
10071
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/validate.mjs"() {
10532
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/validate.mjs"() {
10072
10533
  "use strict";
10073
10534
  init_devAssert();
10074
10535
  init_GraphQLError();
@@ -10080,7 +10541,7 @@ spurious results.`);
10080
10541
  }
10081
10542
  });
10082
10543
 
10083
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/jsutils/memoize3.mjs
10544
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/jsutils/memoize3.mjs
10084
10545
  function memoize3(fn) {
10085
10546
  let cache0;
10086
10547
  return function memoized(a1, a2, a3) {
@@ -10106,12 +10567,12 @@ spurious results.`);
10106
10567
  };
10107
10568
  }
10108
10569
  var init_memoize3 = __esm({
10109
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/jsutils/memoize3.mjs"() {
10570
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/jsutils/memoize3.mjs"() {
10110
10571
  "use strict";
10111
10572
  }
10112
10573
  });
10113
10574
 
10114
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/jsutils/promiseForObject.mjs
10575
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/jsutils/promiseForObject.mjs
10115
10576
  function promiseForObject(object) {
10116
10577
  return Promise.all(Object.values(object)).then((resolvedValues) => {
10117
10578
  const resolvedObject = /* @__PURE__ */ Object.create(null);
@@ -10122,12 +10583,12 @@ spurious results.`);
10122
10583
  });
10123
10584
  }
10124
10585
  var init_promiseForObject = __esm({
10125
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/jsutils/promiseForObject.mjs"() {
10586
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/jsutils/promiseForObject.mjs"() {
10126
10587
  "use strict";
10127
10588
  }
10128
10589
  });
10129
10590
 
10130
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/jsutils/promiseReduce.mjs
10591
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/jsutils/promiseReduce.mjs
10131
10592
  function promiseReduce(values, callbackFn, initialValue) {
10132
10593
  let accumulator = initialValue;
10133
10594
  for (const value of values) {
@@ -10136,19 +10597,19 @@ spurious results.`);
10136
10597
  return accumulator;
10137
10598
  }
10138
10599
  var init_promiseReduce = __esm({
10139
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/jsutils/promiseReduce.mjs"() {
10600
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/jsutils/promiseReduce.mjs"() {
10140
10601
  "use strict";
10141
10602
  init_isPromise();
10142
10603
  }
10143
10604
  });
10144
10605
 
10145
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/jsutils/toError.mjs
10606
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/jsutils/toError.mjs
10146
10607
  function toError(thrownValue) {
10147
10608
  return thrownValue instanceof Error ? thrownValue : new NonErrorThrown(thrownValue);
10148
10609
  }
10149
10610
  var NonErrorThrown;
10150
10611
  var init_toError = __esm({
10151
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/jsutils/toError.mjs"() {
10612
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/jsutils/toError.mjs"() {
10152
10613
  "use strict";
10153
10614
  init_inspect();
10154
10615
  NonErrorThrown = class extends Error {
@@ -10161,7 +10622,7 @@ spurious results.`);
10161
10622
  }
10162
10623
  });
10163
10624
 
10164
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/error/locatedError.mjs
10625
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/error/locatedError.mjs
10165
10626
  function locatedError(rawOriginalError, nodes, path) {
10166
10627
  var _nodes;
10167
10628
  const originalError = toError(rawOriginalError);
@@ -10180,14 +10641,14 @@ spurious results.`);
10180
10641
  return Array.isArray(error3.path);
10181
10642
  }
10182
10643
  var init_locatedError = __esm({
10183
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/error/locatedError.mjs"() {
10644
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/error/locatedError.mjs"() {
10184
10645
  "use strict";
10185
10646
  init_toError();
10186
10647
  init_GraphQLError();
10187
10648
  }
10188
10649
  });
10189
10650
 
10190
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/execution/execute.mjs
10651
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/execution/execute.mjs
10191
10652
  function execute(args) {
10192
10653
  arguments.length < 2 || devAssert(
10193
10654
  false,
@@ -10243,7 +10704,7 @@ spurious results.`);
10243
10704
  );
10244
10705
  }
10245
10706
  function buildExecutionContext(args) {
10246
- var _definition$name, _operation$variableDe;
10707
+ var _definition$name, _operation$variableDe, _options$maxCoercionE;
10247
10708
  const {
10248
10709
  schema,
10249
10710
  document: document2,
@@ -10253,7 +10714,8 @@ spurious results.`);
10253
10714
  operationName,
10254
10715
  fieldResolver,
10255
10716
  typeResolver,
10256
- subscribeFieldResolver
10717
+ subscribeFieldResolver,
10718
+ options
10257
10719
  } = args;
10258
10720
  let operation;
10259
10721
  const fragments = /* @__PURE__ */ Object.create(null);
@@ -10291,7 +10753,7 @@ spurious results.`);
10291
10753
  variableDefinitions,
10292
10754
  rawVariableValues !== null && rawVariableValues !== void 0 ? rawVariableValues : {},
10293
10755
  {
10294
- maxErrors: 50
10756
+ maxErrors: (_options$maxCoercionE = options === null || options === void 0 ? void 0 : options.maxCoercionErrors) !== null && _options$maxCoercionE !== void 0 ? _options$maxCoercionE : 50
10295
10757
  }
10296
10758
  );
10297
10759
  if (coercedVariableValues.errors) {
@@ -10725,7 +11187,7 @@ spurious results.`);
10725
11187
  }
10726
11188
  var collectSubfields2, defaultTypeResolver, defaultFieldResolver;
10727
11189
  var init_execute = __esm({
10728
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/execution/execute.mjs"() {
11190
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/execution/execute.mjs"() {
10729
11191
  "use strict";
10730
11192
  init_devAssert();
10731
11193
  init_inspect();
@@ -10768,6 +11230,10 @@ spurious results.`);
10768
11230
  if (isPromise(isTypeOfResult)) {
10769
11231
  promisedIsTypeOfResults[i] = isTypeOfResult;
10770
11232
  } else if (isTypeOfResult) {
11233
+ if (promisedIsTypeOfResults.length) {
11234
+ Promise.allSettled(promisedIsTypeOfResults).catch(() => {
11235
+ });
11236
+ }
10771
11237
  return type.name;
10772
11238
  }
10773
11239
  }
@@ -10794,7 +11260,7 @@ spurious results.`);
10794
11260
  }
10795
11261
  });
10796
11262
 
10797
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/graphql.mjs
11263
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/graphql.mjs
10798
11264
  function graphql(args) {
10799
11265
  return new Promise((resolve) => resolve(graphqlImpl(args)));
10800
11266
  }
@@ -10852,7 +11318,7 @@ spurious results.`);
10852
11318
  });
10853
11319
  }
10854
11320
  var init_graphql = __esm({
10855
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/graphql.mjs"() {
11321
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/graphql.mjs"() {
10856
11322
  "use strict";
10857
11323
  init_devAssert();
10858
11324
  init_isPromise();
@@ -10863,9 +11329,9 @@ spurious results.`);
10863
11329
  }
10864
11330
  });
10865
11331
 
10866
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/type/index.mjs
11332
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/type/index.mjs
10867
11333
  var init_type = __esm({
10868
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/type/index.mjs"() {
11334
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/type/index.mjs"() {
10869
11335
  "use strict";
10870
11336
  init_schema();
10871
11337
  init_definition();
@@ -10877,9 +11343,9 @@ spurious results.`);
10877
11343
  }
10878
11344
  });
10879
11345
 
10880
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/language/index.mjs
11346
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/language/index.mjs
10881
11347
  var init_language = __esm({
10882
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/language/index.mjs"() {
11348
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/language/index.mjs"() {
10883
11349
  "use strict";
10884
11350
  init_source();
10885
11351
  init_location();
@@ -10896,17 +11362,17 @@ spurious results.`);
10896
11362
  }
10897
11363
  });
10898
11364
 
10899
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/jsutils/isAsyncIterable.mjs
11365
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/jsutils/isAsyncIterable.mjs
10900
11366
  function isAsyncIterable(maybeAsyncIterable) {
10901
11367
  return typeof (maybeAsyncIterable === null || maybeAsyncIterable === void 0 ? void 0 : maybeAsyncIterable[Symbol.asyncIterator]) === "function";
10902
11368
  }
10903
11369
  var init_isAsyncIterable = __esm({
10904
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/jsutils/isAsyncIterable.mjs"() {
11370
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/jsutils/isAsyncIterable.mjs"() {
10905
11371
  "use strict";
10906
11372
  }
10907
11373
  });
10908
11374
 
10909
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/execution/mapAsyncIterator.mjs
11375
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/execution/mapAsyncIterator.mjs
10910
11376
  function mapAsyncIterator(iterable, callback) {
10911
11377
  const iterator = iterable[Symbol.asyncIterator]();
10912
11378
  async function mapResult(result) {
@@ -10950,12 +11416,12 @@ spurious results.`);
10950
11416
  };
10951
11417
  }
10952
11418
  var init_mapAsyncIterator = __esm({
10953
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/execution/mapAsyncIterator.mjs"() {
11419
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/execution/mapAsyncIterator.mjs"() {
10954
11420
  "use strict";
10955
11421
  }
10956
11422
  });
10957
11423
 
10958
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/execution/subscribe.mjs
11424
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/execution/subscribe.mjs
10959
11425
  async function subscribe(args) {
10960
11426
  arguments.length < 2 || devAssert(
10961
11427
  false,
@@ -11063,7 +11529,7 @@ spurious results.`);
11063
11529
  }
11064
11530
  }
11065
11531
  var init_subscribe = __esm({
11066
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/execution/subscribe.mjs"() {
11532
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/execution/subscribe.mjs"() {
11067
11533
  "use strict";
11068
11534
  init_devAssert();
11069
11535
  init_inspect();
@@ -11078,9 +11544,9 @@ spurious results.`);
11078
11544
  }
11079
11545
  });
11080
11546
 
11081
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/execution/index.mjs
11547
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/execution/index.mjs
11082
11548
  var init_execution = __esm({
11083
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/execution/index.mjs"() {
11549
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/execution/index.mjs"() {
11084
11550
  "use strict";
11085
11551
  init_Path();
11086
11552
  init_execute();
@@ -11089,7 +11555,7 @@ spurious results.`);
11089
11555
  }
11090
11556
  });
11091
11557
 
11092
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/custom/NoDeprecatedCustomRule.mjs
11558
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/custom/NoDeprecatedCustomRule.mjs
11093
11559
  function NoDeprecatedCustomRule(context) {
11094
11560
  return {
11095
11561
  Field(node) {
@@ -11173,7 +11639,7 @@ spurious results.`);
11173
11639
  };
11174
11640
  }
11175
11641
  var init_NoDeprecatedCustomRule = __esm({
11176
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/custom/NoDeprecatedCustomRule.mjs"() {
11642
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/custom/NoDeprecatedCustomRule.mjs"() {
11177
11643
  "use strict";
11178
11644
  init_invariant();
11179
11645
  init_GraphQLError();
@@ -11181,7 +11647,7 @@ spurious results.`);
11181
11647
  }
11182
11648
  });
11183
11649
 
11184
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/custom/NoSchemaIntrospectionCustomRule.mjs
11650
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/custom/NoSchemaIntrospectionCustomRule.mjs
11185
11651
  function NoSchemaIntrospectionCustomRule(context) {
11186
11652
  return {
11187
11653
  Field(node) {
@@ -11200,7 +11666,7 @@ spurious results.`);
11200
11666
  };
11201
11667
  }
11202
11668
  var init_NoSchemaIntrospectionCustomRule = __esm({
11203
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/rules/custom/NoSchemaIntrospectionCustomRule.mjs"() {
11669
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/rules/custom/NoSchemaIntrospectionCustomRule.mjs"() {
11204
11670
  "use strict";
11205
11671
  init_GraphQLError();
11206
11672
  init_definition();
@@ -11208,9 +11674,9 @@ spurious results.`);
11208
11674
  }
11209
11675
  });
11210
11676
 
11211
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/index.mjs
11677
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/index.mjs
11212
11678
  var init_validation = __esm({
11213
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/validation/index.mjs"() {
11679
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/validation/index.mjs"() {
11214
11680
  "use strict";
11215
11681
  init_validate2();
11216
11682
  init_ValidationContext();
@@ -11241,6 +11707,7 @@ spurious results.`);
11241
11707
  init_ValuesOfCorrectTypeRule();
11242
11708
  init_VariablesAreInputTypesRule();
11243
11709
  init_VariablesInAllowedPositionRule();
11710
+ init_MaxIntrospectionDepthRule();
11244
11711
  init_LoneSchemaDefinitionRule();
11245
11712
  init_UniqueOperationTypesRule();
11246
11713
  init_UniqueTypeNamesRule();
@@ -11254,9 +11721,9 @@ spurious results.`);
11254
11721
  }
11255
11722
  });
11256
11723
 
11257
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/error/index.mjs
11724
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/error/index.mjs
11258
11725
  var init_error = __esm({
11259
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/error/index.mjs"() {
11726
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/error/index.mjs"() {
11260
11727
  "use strict";
11261
11728
  init_GraphQLError();
11262
11729
  init_syntaxError();
@@ -11264,7 +11731,7 @@ spurious results.`);
11264
11731
  }
11265
11732
  });
11266
11733
 
11267
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/utilities/getIntrospectionQuery.mjs
11734
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/utilities/getIntrospectionQuery.mjs
11268
11735
  function getIntrospectionQuery(options) {
11269
11736
  const optionsWithDefault = {
11270
11737
  descriptions: true,
@@ -11272,6 +11739,7 @@ spurious results.`);
11272
11739
  directiveIsRepeatable: false,
11273
11740
  schemaDescription: false,
11274
11741
  inputValueDeprecation: false,
11742
+ oneOf: false,
11275
11743
  ...options
11276
11744
  };
11277
11745
  const descriptions = optionsWithDefault.descriptions ? "description" : "";
@@ -11281,13 +11749,14 @@ spurious results.`);
11281
11749
  function inputDeprecation(str) {
11282
11750
  return optionsWithDefault.inputValueDeprecation ? str : "";
11283
11751
  }
11752
+ const oneOf = optionsWithDefault.oneOf ? "isOneOf" : "";
11284
11753
  return `
11285
11754
  query IntrospectionQuery {
11286
11755
  __schema {
11287
11756
  ${schemaDescription}
11288
- queryType { name }
11289
- mutationType { name }
11290
- subscriptionType { name }
11757
+ queryType { name kind }
11758
+ mutationType { name kind }
11759
+ subscriptionType { name kind }
11291
11760
  types {
11292
11761
  ...FullType
11293
11762
  }
@@ -11308,6 +11777,7 @@ spurious results.`);
11308
11777
  name
11309
11778
  ${descriptions}
11310
11779
  ${specifiedByUrl}
11780
+ ${oneOf}
11311
11781
  fields(includeDeprecated: true) {
11312
11782
  name
11313
11783
  ${descriptions}
@@ -11389,12 +11859,12 @@ spurious results.`);
11389
11859
  `;
11390
11860
  }
11391
11861
  var init_getIntrospectionQuery = __esm({
11392
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/utilities/getIntrospectionQuery.mjs"() {
11862
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/utilities/getIntrospectionQuery.mjs"() {
11393
11863
  "use strict";
11394
11864
  }
11395
11865
  });
11396
11866
 
11397
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/utilities/getOperationAST.mjs
11867
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/utilities/getOperationAST.mjs
11398
11868
  function getOperationAST(documentAST, operationName) {
11399
11869
  let operation = null;
11400
11870
  for (const definition of documentAST.definitions) {
@@ -11413,13 +11883,13 @@ spurious results.`);
11413
11883
  return operation;
11414
11884
  }
11415
11885
  var init_getOperationAST = __esm({
11416
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/utilities/getOperationAST.mjs"() {
11886
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/utilities/getOperationAST.mjs"() {
11417
11887
  "use strict";
11418
11888
  init_kinds();
11419
11889
  }
11420
11890
  });
11421
11891
 
11422
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/utilities/getOperationRootType.mjs
11892
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/utilities/getOperationRootType.mjs
11423
11893
  function getOperationRootType(schema, operation) {
11424
11894
  if (operation.operation === "query") {
11425
11895
  const queryType = schema.getQueryType();
@@ -11459,19 +11929,20 @@ spurious results.`);
11459
11929
  );
11460
11930
  }
11461
11931
  var init_getOperationRootType = __esm({
11462
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/utilities/getOperationRootType.mjs"() {
11932
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/utilities/getOperationRootType.mjs"() {
11463
11933
  "use strict";
11464
11934
  init_GraphQLError();
11465
11935
  }
11466
11936
  });
11467
11937
 
11468
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/utilities/introspectionFromSchema.mjs
11938
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/utilities/introspectionFromSchema.mjs
11469
11939
  function introspectionFromSchema(schema, options) {
11470
11940
  const optionsWithDefaults = {
11471
11941
  specifiedByUrl: true,
11472
11942
  directiveIsRepeatable: true,
11473
11943
  schemaDescription: true,
11474
11944
  inputValueDeprecation: true,
11945
+ oneOf: true,
11475
11946
  ...options
11476
11947
  };
11477
11948
  const document2 = parse4(getIntrospectionQuery(optionsWithDefaults));
@@ -11483,7 +11954,7 @@ spurious results.`);
11483
11954
  return result.data;
11484
11955
  }
11485
11956
  var init_introspectionFromSchema = __esm({
11486
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/utilities/introspectionFromSchema.mjs"() {
11957
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/utilities/introspectionFromSchema.mjs"() {
11487
11958
  "use strict";
11488
11959
  init_invariant();
11489
11960
  init_parser();
@@ -11492,7 +11963,7 @@ spurious results.`);
11492
11963
  }
11493
11964
  });
11494
11965
 
11495
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/utilities/buildClientSchema.mjs
11966
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/utilities/buildClientSchema.mjs
11496
11967
  function buildClientSchema(introspection, options) {
11497
11968
  isObjectLike(introspection) && isObjectLike(introspection.__schema) || devAssert(
11498
11969
  false,
@@ -11661,7 +12132,8 @@ spurious results.`);
11661
12132
  return new GraphQLInputObjectType({
11662
12133
  name: inputObjectIntrospection.name,
11663
12134
  description: inputObjectIntrospection.description,
11664
- fields: () => buildInputValueDefMap(inputObjectIntrospection.inputFields)
12135
+ fields: () => buildInputValueDefMap(inputObjectIntrospection.inputFields),
12136
+ isOneOf: inputObjectIntrospection.isOneOf
11665
12137
  });
11666
12138
  }
11667
12139
  function buildFieldDefMap(typeIntrospection) {
@@ -11743,7 +12215,7 @@ spurious results.`);
11743
12215
  }
11744
12216
  }
11745
12217
  var init_buildClientSchema = __esm({
11746
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/utilities/buildClientSchema.mjs"() {
12218
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/utilities/buildClientSchema.mjs"() {
11747
12219
  "use strict";
11748
12220
  init_devAssert();
11749
12221
  init_inspect();
@@ -11759,7 +12231,7 @@ spurious results.`);
11759
12231
  }
11760
12232
  });
11761
12233
 
11762
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/utilities/extendSchema.mjs
12234
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/utilities/extendSchema.mjs
11763
12235
  function extendSchema(schema, documentAST, options) {
11764
12236
  assertSchema(schema);
11765
12237
  documentAST != null && documentAST.kind === Kind.DOCUMENT || devAssert(false, "Must provide valid Document AST.");
@@ -12188,7 +12660,8 @@ spurious results.`);
12188
12660
  description: (_astNode$description6 = astNode.description) === null || _astNode$description6 === void 0 ? void 0 : _astNode$description6.value,
12189
12661
  fields: () => buildInputFieldMap(allNodes),
12190
12662
  astNode,
12191
- extensionASTNodes
12663
+ extensionASTNodes,
12664
+ isOneOf: isOneOf(astNode)
12192
12665
  });
12193
12666
  }
12194
12667
  }
@@ -12202,9 +12675,12 @@ spurious results.`);
12202
12675
  const specifiedBy = getDirectiveValues(GraphQLSpecifiedByDirective, node);
12203
12676
  return specifiedBy === null || specifiedBy === void 0 ? void 0 : specifiedBy.url;
12204
12677
  }
12678
+ function isOneOf(node) {
12679
+ return Boolean(getDirectiveValues(GraphQLOneOfDirective, node));
12680
+ }
12205
12681
  var stdTypeMap;
12206
12682
  var init_extendSchema = __esm({
12207
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/utilities/extendSchema.mjs"() {
12683
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/utilities/extendSchema.mjs"() {
12208
12684
  "use strict";
12209
12685
  init_devAssert();
12210
12686
  init_inspect();
@@ -12228,7 +12704,7 @@ spurious results.`);
12228
12704
  }
12229
12705
  });
12230
12706
 
12231
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/utilities/buildASTSchema.mjs
12707
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/utilities/buildASTSchema.mjs
12232
12708
  function buildASTSchema(documentAST, options) {
12233
12709
  documentAST != null && documentAST.kind === Kind.DOCUMENT || devAssert(false, "Must provide valid Document AST.");
12234
12710
  if ((options === null || options === void 0 ? void 0 : options.assumeValid) !== true && (options === null || options === void 0 ? void 0 : options.assumeValidSDL) !== true) {
@@ -12283,7 +12759,7 @@ spurious results.`);
12283
12759
  });
12284
12760
  }
12285
12761
  var init_buildASTSchema = __esm({
12286
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/utilities/buildASTSchema.mjs"() {
12762
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/utilities/buildASTSchema.mjs"() {
12287
12763
  "use strict";
12288
12764
  init_devAssert();
12289
12765
  init_kinds();
@@ -12295,7 +12771,7 @@ spurious results.`);
12295
12771
  }
12296
12772
  });
12297
12773
 
12298
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/utilities/lexicographicSortSchema.mjs
12774
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/utilities/lexicographicSortSchema.mjs
12299
12775
  function lexicographicSortSchema(schema) {
12300
12776
  const schemaConfig = schema.toConfig();
12301
12777
  const typeMap = keyValMap(
@@ -12414,7 +12890,7 @@ spurious results.`);
12414
12890
  });
12415
12891
  }
12416
12892
  var init_lexicographicSortSchema = __esm({
12417
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/utilities/lexicographicSortSchema.mjs"() {
12893
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/utilities/lexicographicSortSchema.mjs"() {
12418
12894
  "use strict";
12419
12895
  init_inspect();
12420
12896
  init_invariant();
@@ -12427,7 +12903,7 @@ spurious results.`);
12427
12903
  }
12428
12904
  });
12429
12905
 
12430
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/utilities/printSchema.mjs
12906
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/utilities/printSchema.mjs
12431
12907
  function printSchema(schema) {
12432
12908
  return printFilteredSchema(
12433
12909
  schema,
@@ -12535,7 +13011,7 @@ ${operationTypes.join("\n")}
12535
13011
  const fields = Object.values(type.getFields()).map(
12536
13012
  (f, i) => printDescription(f, " ", !i) + " " + printInputValue(f)
12537
13013
  );
12538
- return printDescription(type) + `input ${type.name}` + printBlock(fields);
13014
+ return printDescription(type) + `input ${type.name}` + (type.isOneOf ? " @oneOf" : "") + printBlock(fields);
12539
13015
  }
12540
13016
  function printFields(type) {
12541
13017
  const fields = Object.values(type.getFields()).map(
@@ -12605,7 +13081,7 @@ ${operationTypes.join("\n")}
12605
13081
  return prefix + blockString.replace(/\n/g, "\n" + indentation) + "\n";
12606
13082
  }
12607
13083
  var init_printSchema = __esm({
12608
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/utilities/printSchema.mjs"() {
13084
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/utilities/printSchema.mjs"() {
12609
13085
  "use strict";
12610
13086
  init_inspect();
12611
13087
  init_invariant();
@@ -12620,7 +13096,7 @@ ${operationTypes.join("\n")}
12620
13096
  }
12621
13097
  });
12622
13098
 
12623
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/utilities/concatAST.mjs
13099
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/utilities/concatAST.mjs
12624
13100
  function concatAST(documents) {
12625
13101
  const definitions = [];
12626
13102
  for (const doc of documents) {
@@ -12632,13 +13108,13 @@ ${operationTypes.join("\n")}
12632
13108
  };
12633
13109
  }
12634
13110
  var init_concatAST = __esm({
12635
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/utilities/concatAST.mjs"() {
13111
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/utilities/concatAST.mjs"() {
12636
13112
  "use strict";
12637
13113
  init_kinds();
12638
13114
  }
12639
13115
  });
12640
13116
 
12641
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/utilities/separateOperations.mjs
13117
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/utilities/separateOperations.mjs
12642
13118
  function separateOperations(documentAST) {
12643
13119
  const operations = [];
12644
13120
  const depGraph = /* @__PURE__ */ Object.create(null);
@@ -12692,14 +13168,14 @@ ${operationTypes.join("\n")}
12692
13168
  return dependencies;
12693
13169
  }
12694
13170
  var init_separateOperations = __esm({
12695
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/utilities/separateOperations.mjs"() {
13171
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/utilities/separateOperations.mjs"() {
12696
13172
  "use strict";
12697
13173
  init_kinds();
12698
13174
  init_visitor();
12699
13175
  }
12700
13176
  });
12701
13177
 
12702
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/utilities/stripIgnoredCharacters.mjs
13178
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/utilities/stripIgnoredCharacters.mjs
12703
13179
  function stripIgnoredCharacters(source) {
12704
13180
  const sourceObj = isSource(source) ? source : new Source(source);
12705
13181
  const body = sourceObj.body;
@@ -12728,7 +13204,7 @@ ${operationTypes.join("\n")}
12728
13204
  return strippedBody;
12729
13205
  }
12730
13206
  var init_stripIgnoredCharacters = __esm({
12731
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/utilities/stripIgnoredCharacters.mjs"() {
13207
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/utilities/stripIgnoredCharacters.mjs"() {
12732
13208
  "use strict";
12733
13209
  init_blockString();
12734
13210
  init_lexer();
@@ -12737,7 +13213,7 @@ ${operationTypes.join("\n")}
12737
13213
  }
12738
13214
  });
12739
13215
 
12740
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/utilities/assertValidName.mjs
13216
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/utilities/assertValidName.mjs
12741
13217
  function assertValidName(name) {
12742
13218
  const error3 = isValidNameError(name);
12743
13219
  if (error3) {
@@ -12759,7 +13235,7 @@ ${operationTypes.join("\n")}
12759
13235
  }
12760
13236
  }
12761
13237
  var init_assertValidName = __esm({
12762
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/utilities/assertValidName.mjs"() {
13238
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/utilities/assertValidName.mjs"() {
12763
13239
  "use strict";
12764
13240
  init_devAssert();
12765
13241
  init_GraphQLError();
@@ -12767,7 +13243,7 @@ ${operationTypes.join("\n")}
12767
13243
  }
12768
13244
  });
12769
13245
 
12770
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/utilities/findBreakingChanges.mjs
13246
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/utilities/findBreakingChanges.mjs
12771
13247
  function findBreakingChanges(oldSchema, newSchema) {
12772
13248
  return findSchemaChanges(oldSchema, newSchema).filter(
12773
13249
  (change) => change.type in BreakingChangeType
@@ -13126,7 +13602,7 @@ ${operationTypes.join("\n")}
13126
13602
  }
13127
13603
  var BreakingChangeType, DangerousChangeType;
13128
13604
  var init_findBreakingChanges = __esm({
13129
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/utilities/findBreakingChanges.mjs"() {
13605
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/utilities/findBreakingChanges.mjs"() {
13130
13606
  "use strict";
13131
13607
  init_inspect();
13132
13608
  init_invariant();
@@ -13165,9 +13641,173 @@ ${operationTypes.join("\n")}
13165
13641
  }
13166
13642
  });
13167
13643
 
13168
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/utilities/index.mjs
13644
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/utilities/resolveSchemaCoordinate.mjs
13645
+ function resolveSchemaCoordinate(schema, schemaCoordinate) {
13646
+ return resolveASTSchemaCoordinate(
13647
+ schema,
13648
+ parseSchemaCoordinate(schemaCoordinate)
13649
+ );
13650
+ }
13651
+ function resolveTypeCoordinate(schema, schemaCoordinate) {
13652
+ const typeName = schemaCoordinate.name.value;
13653
+ const type = schema.getType(typeName);
13654
+ if (type == null) {
13655
+ return;
13656
+ }
13657
+ return {
13658
+ kind: "NamedType",
13659
+ type
13660
+ };
13661
+ }
13662
+ function resolveMemberCoordinate(schema, schemaCoordinate) {
13663
+ const typeName = schemaCoordinate.name.value;
13664
+ const type = schema.getType(typeName);
13665
+ if (!type) {
13666
+ throw new Error(
13667
+ `Expected ${inspect(typeName)} to be defined as a type in the schema.`
13668
+ );
13669
+ }
13670
+ if (!isEnumType(type) && !isInputObjectType(type) && !isObjectType(type) && !isInterfaceType(type)) {
13671
+ throw new Error(
13672
+ `Expected ${inspect(
13673
+ typeName
13674
+ )} to be an Enum, Input Object, Object or Interface type.`
13675
+ );
13676
+ }
13677
+ if (isEnumType(type)) {
13678
+ const enumValueName = schemaCoordinate.memberName.value;
13679
+ const enumValue = type.getValue(enumValueName);
13680
+ if (enumValue == null) {
13681
+ return;
13682
+ }
13683
+ return {
13684
+ kind: "EnumValue",
13685
+ type,
13686
+ enumValue
13687
+ };
13688
+ }
13689
+ if (isInputObjectType(type)) {
13690
+ const inputFieldName = schemaCoordinate.memberName.value;
13691
+ const inputField = type.getFields()[inputFieldName];
13692
+ if (inputField == null) {
13693
+ return;
13694
+ }
13695
+ return {
13696
+ kind: "InputField",
13697
+ type,
13698
+ inputField
13699
+ };
13700
+ }
13701
+ const fieldName = schemaCoordinate.memberName.value;
13702
+ const field = type.getFields()[fieldName];
13703
+ if (field == null) {
13704
+ return;
13705
+ }
13706
+ return {
13707
+ kind: "Field",
13708
+ type,
13709
+ field
13710
+ };
13711
+ }
13712
+ function resolveArgumentCoordinate(schema, schemaCoordinate) {
13713
+ const typeName = schemaCoordinate.name.value;
13714
+ const type = schema.getType(typeName);
13715
+ if (type == null) {
13716
+ throw new Error(
13717
+ `Expected ${inspect(typeName)} to be defined as a type in the schema.`
13718
+ );
13719
+ }
13720
+ if (!isObjectType(type) && !isInterfaceType(type)) {
13721
+ throw new Error(
13722
+ `Expected ${inspect(typeName)} to be an object type or interface type.`
13723
+ );
13724
+ }
13725
+ const fieldName = schemaCoordinate.fieldName.value;
13726
+ const field = type.getFields()[fieldName];
13727
+ if (field == null) {
13728
+ throw new Error(
13729
+ `Expected ${inspect(fieldName)} to exist as a field of type ${inspect(
13730
+ typeName
13731
+ )} in the schema.`
13732
+ );
13733
+ }
13734
+ const fieldArgumentName = schemaCoordinate.argumentName.value;
13735
+ const fieldArgument = field.args.find(
13736
+ (arg) => arg.name === fieldArgumentName
13737
+ );
13738
+ if (fieldArgument == null) {
13739
+ return;
13740
+ }
13741
+ return {
13742
+ kind: "FieldArgument",
13743
+ type,
13744
+ field,
13745
+ fieldArgument
13746
+ };
13747
+ }
13748
+ function resolveDirectiveCoordinate(schema, schemaCoordinate) {
13749
+ const directiveName = schemaCoordinate.name.value;
13750
+ const directive = schema.getDirective(directiveName);
13751
+ if (!directive) {
13752
+ return;
13753
+ }
13754
+ return {
13755
+ kind: "Directive",
13756
+ directive
13757
+ };
13758
+ }
13759
+ function resolveDirectiveArgumentCoordinate(schema, schemaCoordinate) {
13760
+ const directiveName = schemaCoordinate.name.value;
13761
+ const directive = schema.getDirective(directiveName);
13762
+ if (!directive) {
13763
+ throw new Error(
13764
+ `Expected ${inspect(
13765
+ directiveName
13766
+ )} to be defined as a directive in the schema.`
13767
+ );
13768
+ }
13769
+ const {
13770
+ argumentName: { value: directiveArgumentName }
13771
+ } = schemaCoordinate;
13772
+ const directiveArgument = directive.args.find(
13773
+ (arg) => arg.name === directiveArgumentName
13774
+ );
13775
+ if (!directiveArgument) {
13776
+ return;
13777
+ }
13778
+ return {
13779
+ kind: "DirectiveArgument",
13780
+ directive,
13781
+ directiveArgument
13782
+ };
13783
+ }
13784
+ function resolveASTSchemaCoordinate(schema, schemaCoordinate) {
13785
+ switch (schemaCoordinate.kind) {
13786
+ case Kind.TYPE_COORDINATE:
13787
+ return resolveTypeCoordinate(schema, schemaCoordinate);
13788
+ case Kind.MEMBER_COORDINATE:
13789
+ return resolveMemberCoordinate(schema, schemaCoordinate);
13790
+ case Kind.ARGUMENT_COORDINATE:
13791
+ return resolveArgumentCoordinate(schema, schemaCoordinate);
13792
+ case Kind.DIRECTIVE_COORDINATE:
13793
+ return resolveDirectiveCoordinate(schema, schemaCoordinate);
13794
+ case Kind.DIRECTIVE_ARGUMENT_COORDINATE:
13795
+ return resolveDirectiveArgumentCoordinate(schema, schemaCoordinate);
13796
+ }
13797
+ }
13798
+ var init_resolveSchemaCoordinate = __esm({
13799
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/utilities/resolveSchemaCoordinate.mjs"() {
13800
+ "use strict";
13801
+ init_inspect();
13802
+ init_kinds();
13803
+ init_parser();
13804
+ init_definition();
13805
+ }
13806
+ });
13807
+
13808
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/utilities/index.mjs
13169
13809
  var init_utilities = __esm({
13170
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/utilities/index.mjs"() {
13810
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/utilities/index.mjs"() {
13171
13811
  "use strict";
13172
13812
  init_getIntrospectionQuery();
13173
13813
  init_getOperationAST();
@@ -13190,10 +13830,11 @@ ${operationTypes.join("\n")}
13190
13830
  init_typeComparators();
13191
13831
  init_assertValidName();
13192
13832
  init_findBreakingChanges();
13833
+ init_resolveSchemaCoordinate();
13193
13834
  }
13194
13835
  });
13195
13836
 
13196
- // node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/index.mjs
13837
+ // node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/index.mjs
13197
13838
  var graphql_exports = {};
13198
13839
  __export(graphql_exports, {
13199
13840
  BREAK: () => BREAK,
@@ -13220,6 +13861,7 @@ ${operationTypes.join("\n")}
13220
13861
  GraphQLList: () => GraphQLList,
13221
13862
  GraphQLNonNull: () => GraphQLNonNull,
13222
13863
  GraphQLObjectType: () => GraphQLObjectType,
13864
+ GraphQLOneOfDirective: () => GraphQLOneOfDirective,
13223
13865
  GraphQLScalarType: () => GraphQLScalarType,
13224
13866
  GraphQLSchema: () => GraphQLSchema,
13225
13867
  GraphQLSkipDirective: () => GraphQLSkipDirective,
@@ -13235,6 +13877,7 @@ ${operationTypes.join("\n")}
13235
13877
  Location: () => Location,
13236
13878
  LoneAnonymousOperationRule: () => LoneAnonymousOperationRule,
13237
13879
  LoneSchemaDefinitionRule: () => LoneSchemaDefinitionRule,
13880
+ MaxIntrospectionDepthRule: () => MaxIntrospectionDepthRule,
13238
13881
  NoDeprecatedCustomRule: () => NoDeprecatedCustomRule,
13239
13882
  NoFragmentCyclesRule: () => NoFragmentCyclesRule,
13240
13883
  NoSchemaIntrospectionCustomRule: () => NoSchemaIntrospectionCustomRule,
@@ -13357,6 +14000,7 @@ ${operationTypes.join("\n")}
13357
14000
  isRequiredInputField: () => isRequiredInputField,
13358
14001
  isScalarType: () => isScalarType,
13359
14002
  isSchema: () => isSchema,
14003
+ isSchemaCoordinateNode: () => isSchemaCoordinateNode,
13360
14004
  isSelectionNode: () => isSelectionNode,
13361
14005
  isSpecifiedDirective: () => isSpecifiedDirective,
13362
14006
  isSpecifiedScalarType: () => isSpecifiedScalarType,
@@ -13375,6 +14019,7 @@ ${operationTypes.join("\n")}
13375
14019
  locatedError: () => locatedError,
13376
14020
  parse: () => parse4,
13377
14021
  parseConstValue: () => parseConstValue,
14022
+ parseSchemaCoordinate: () => parseSchemaCoordinate,
13378
14023
  parseType: () => parseType,
13379
14024
  parseValue: () => parseValue,
13380
14025
  print: () => print,
@@ -13384,8 +14029,11 @@ ${operationTypes.join("\n")}
13384
14029
  printSchema: () => printSchema,
13385
14030
  printSourceLocation: () => printSourceLocation,
13386
14031
  printType: () => printType,
14032
+ recommendedRules: () => recommendedRules,
14033
+ resolveASTSchemaCoordinate: () => resolveASTSchemaCoordinate,
13387
14034
  resolveObjMapThunk: () => resolveObjMapThunk,
13388
14035
  resolveReadonlyArrayThunk: () => resolveReadonlyArrayThunk,
14036
+ resolveSchemaCoordinate: () => resolveSchemaCoordinate,
13389
14037
  responsePathAsArray: () => pathToArray,
13390
14038
  separateOperations: () => separateOperations,
13391
14039
  specifiedDirectives: () => specifiedDirectives,
@@ -13406,7 +14054,7 @@ ${operationTypes.join("\n")}
13406
14054
  visitWithTypeInfo: () => visitWithTypeInfo
13407
14055
  });
13408
14056
  var init_graphql2 = __esm({
13409
- "node_modules/.pnpm/graphql@16.8.2/node_modules/graphql/index.mjs"() {
14057
+ "node_modules/.pnpm/graphql@16.12.0/node_modules/graphql/index.mjs"() {
13410
14058
  "use strict";
13411
14059
  init_version();
13412
14060
  init_graphql();
@@ -15221,11 +15869,11 @@ ${operationTypes.join("\n")}
15221
15869
 
15222
15870
  // src/core/utils/request/toPublicUrl.ts
15223
15871
  function toPublicUrl(url) {
15224
- if (typeof location === "undefined") {
15225
- return url.toString();
15226
- }
15227
15872
  const urlInstance = url instanceof URL ? url : new URL(url);
15228
- return urlInstance.origin === location.origin ? urlInstance.pathname : urlInstance.origin + urlInstance.pathname;
15873
+ if (typeof location !== "undefined" && urlInstance.origin === location.origin) {
15874
+ return urlInstance.pathname;
15875
+ }
15876
+ return urlInstance.origin + urlInstance.pathname;
15229
15877
  }
15230
15878
 
15231
15879
  // src/shims/cookie.ts
@@ -15613,16 +16261,16 @@ ${operationTypes.join("\n")}
15613
16261
  }
15614
16262
 
15615
16263
  // node_modules/.pnpm/tldts@7.0.12/node_modules/tldts/dist/es6/src/data/trie.js
15616
- var exceptions = /* @__PURE__ */ function() {
16264
+ var exceptions = /* @__PURE__ */ (function() {
15617
16265
  const _0 = [1, {}], _1 = [0, { "city": _0 }];
15618
16266
  const exceptions2 = [0, { "ck": [0, { "www": _0 }], "jp": [0, { "kawasaki": _1, "kitakyushu": _1, "kobe": _1, "nagoya": _1, "sapporo": _1, "sendai": _1, "yokohama": _1 }] }];
15619
16267
  return exceptions2;
15620
- }();
15621
- var rules = /* @__PURE__ */ function() {
16268
+ })();
16269
+ var rules = /* @__PURE__ */ (function() {
15622
16270
  const _2 = [1, {}], _3 = [2, {}], _4 = [1, { "com": _2, "edu": _2, "gov": _2, "net": _2, "org": _2 }], _5 = [1, { "com": _2, "edu": _2, "gov": _2, "mil": _2, "net": _2, "org": _2 }], _6 = [0, { "*": _3 }], _7 = [2, { "s": _6 }], _8 = [0, { "relay": _3 }], _9 = [2, { "id": _3 }], _10 = [1, { "gov": _2 }], _11 = [0, { "airflow": _6, "transfer-webapp": _3 }], _12 = [0, { "transfer-webapp": _3, "transfer-webapp-fips": _3 }], _13 = [0, { "notebook": _3, "studio": _3 }], _14 = [0, { "labeling": _3, "notebook": _3, "studio": _3 }], _15 = [0, { "notebook": _3 }], _16 = [0, { "labeling": _3, "notebook": _3, "notebook-fips": _3, "studio": _3 }], _17 = [0, { "notebook": _3, "notebook-fips": _3, "studio": _3, "studio-fips": _3 }], _18 = [0, { "*": _2 }], _19 = [1, { "co": _3 }], _20 = [0, { "objects": _3 }], _21 = [2, { "nodes": _3 }], _22 = [0, { "my": _3 }], _23 = [0, { "s3": _3, "s3-accesspoint": _3, "s3-website": _3 }], _24 = [0, { "s3": _3, "s3-accesspoint": _3 }], _25 = [0, { "direct": _3 }], _26 = [0, { "webview-assets": _3 }], _27 = [0, { "vfs": _3, "webview-assets": _3 }], _28 = [0, { "execute-api": _3, "emrappui-prod": _3, "emrnotebooks-prod": _3, "emrstudio-prod": _3, "dualstack": _23, "s3": _3, "s3-accesspoint": _3, "s3-object-lambda": _3, "s3-website": _3, "aws-cloud9": _26, "cloud9": _27 }], _29 = [0, { "execute-api": _3, "emrappui-prod": _3, "emrnotebooks-prod": _3, "emrstudio-prod": _3, "dualstack": _24, "s3": _3, "s3-accesspoint": _3, "s3-object-lambda": _3, "s3-website": _3, "aws-cloud9": _26, "cloud9": _27 }], _30 = [0, { "execute-api": _3, "emrappui-prod": _3, "emrnotebooks-prod": _3, "emrstudio-prod": _3, "dualstack": _23, "s3": _3, "s3-accesspoint": _3, "s3-object-lambda": _3, "s3-website": _3, "analytics-gateway": _3, "aws-cloud9": _26, "cloud9": _27 }], _31 = [0, { "execute-api": _3, "emrappui-prod": _3, "emrnotebooks-prod": _3, "emrstudio-prod": _3, "dualstack": _23, "s3": _3, "s3-accesspoint": _3, "s3-object-lambda": _3, "s3-website": _3 }], _32 = [0, { "s3": _3, "s3-accesspoint": _3, "s3-accesspoint-fips": _3, "s3-fips": _3, "s3-website": _3 }], _33 = [0, { "execute-api": _3, "emrappui-prod": _3, "emrnotebooks-prod": _3, "emrstudio-prod": _3, "dualstack": _32, "s3": _3, "s3-accesspoint": _3, "s3-accesspoint-fips": _3, "s3-fips": _3, "s3-object-lambda": _3, "s3-website": _3, "aws-cloud9": _26, "cloud9": _27 }], _34 = [0, { "execute-api": _3, "emrappui-prod": _3, "emrnotebooks-prod": _3, "emrstudio-prod": _3, "dualstack": _32, "s3": _3, "s3-accesspoint": _3, "s3-accesspoint-fips": _3, "s3-deprecated": _3, "s3-fips": _3, "s3-object-lambda": _3, "s3-website": _3, "analytics-gateway": _3, "aws-cloud9": _26, "cloud9": _27 }], _35 = [0, { "s3": _3, "s3-accesspoint": _3, "s3-accesspoint-fips": _3, "s3-fips": _3 }], _36 = [0, { "execute-api": _3, "emrappui-prod": _3, "emrnotebooks-prod": _3, "emrstudio-prod": _3, "dualstack": _35, "s3": _3, "s3-accesspoint": _3, "s3-accesspoint-fips": _3, "s3-fips": _3, "s3-object-lambda": _3, "s3-website": _3 }], _37 = [0, { "auth": _3 }], _38 = [0, { "auth": _3, "auth-fips": _3 }], _39 = [0, { "auth-fips": _3 }], _40 = [0, { "apps": _3 }], _41 = [0, { "paas": _3 }], _42 = [2, { "eu": _3 }], _43 = [0, { "app": _3 }], _44 = [0, { "site": _3 }], _45 = [1, { "com": _2, "edu": _2, "net": _2, "org": _2 }], _46 = [0, { "j": _3 }], _47 = [0, { "dyn": _3 }], _48 = [2, { "web": _3 }], _49 = [1, { "co": _2, "com": _2, "edu": _2, "gov": _2, "net": _2, "org": _2 }], _50 = [0, { "p": _3 }], _51 = [0, { "user": _3 }], _52 = [0, { "shop": _3 }], _53 = [0, { "cdn": _3 }], _54 = [2, { "raw": _6 }], _55 = [0, { "cust": _3, "reservd": _3 }], _56 = [0, { "cust": _3 }], _57 = [0, { "s3": _3 }], _58 = [1, { "biz": _2, "com": _2, "edu": _2, "gov": _2, "info": _2, "net": _2, "org": _2 }], _59 = [0, { "ipfs": _3 }], _60 = [1, { "framer": _3 }], _61 = [0, { "forgot": _3 }], _62 = [1, { "gs": _2 }], _63 = [0, { "nes": _2 }], _64 = [1, { "k12": _2, "cc": _2, "lib": _2 }], _65 = [1, { "cc": _2, "lib": _2 }];
15623
16271
  const rules2 = [0, { "ac": [1, { "com": _2, "edu": _2, "gov": _2, "mil": _2, "net": _2, "org": _2, "drr": _3, "feedback": _3, "forms": _3 }], "ad": _2, "ae": [1, { "ac": _2, "co": _2, "gov": _2, "mil": _2, "net": _2, "org": _2, "sch": _2 }], "aero": [1, { "airline": _2, "airport": _2, "accident-investigation": _2, "accident-prevention": _2, "aerobatic": _2, "aeroclub": _2, "aerodrome": _2, "agents": _2, "air-surveillance": _2, "air-traffic-control": _2, "aircraft": _2, "airtraffic": _2, "ambulance": _2, "association": _2, "author": _2, "ballooning": _2, "broker": _2, "caa": _2, "cargo": _2, "catering": _2, "certification": _2, "championship": _2, "charter": _2, "civilaviation": _2, "club": _2, "conference": _2, "consultant": _2, "consulting": _2, "control": _2, "council": _2, "crew": _2, "design": _2, "dgca": _2, "educator": _2, "emergency": _2, "engine": _2, "engineer": _2, "entertainment": _2, "equipment": _2, "exchange": _2, "express": _2, "federation": _2, "flight": _2, "freight": _2, "fuel": _2, "gliding": _2, "government": _2, "groundhandling": _2, "group": _2, "hanggliding": _2, "homebuilt": _2, "insurance": _2, "journal": _2, "journalist": _2, "leasing": _2, "logistics": _2, "magazine": _2, "maintenance": _2, "marketplace": _2, "media": _2, "microlight": _2, "modelling": _2, "navigation": _2, "parachuting": _2, "paragliding": _2, "passenger-association": _2, "pilot": _2, "press": _2, "production": _2, "recreation": _2, "repbody": _2, "res": _2, "research": _2, "rotorcraft": _2, "safety": _2, "scientist": _2, "services": _2, "show": _2, "skydiving": _2, "software": _2, "student": _2, "taxi": _2, "trader": _2, "trading": _2, "trainer": _2, "union": _2, "workinggroup": _2, "works": _2 }], "af": _4, "ag": [1, { "co": _2, "com": _2, "net": _2, "nom": _2, "org": _2, "obj": _3 }], "ai": [1, { "com": _2, "net": _2, "off": _2, "org": _2, "uwu": _3, "framer": _3 }], "al": _5, "am": [1, { "co": _2, "com": _2, "commune": _2, "net": _2, "org": _2, "radio": _3 }], "ao": [1, { "co": _2, "ed": _2, "edu": _2, "gov": _2, "gv": _2, "it": _2, "og": _2, "org": _2, "pb": _2 }], "aq": _2, "ar": [1, { "bet": _2, "com": _2, "coop": _2, "edu": _2, "gob": _2, "gov": _2, "int": _2, "mil": _2, "musica": _2, "mutual": _2, "net": _2, "org": _2, "seg": _2, "senasa": _2, "tur": _2 }], "arpa": [1, { "e164": _2, "home": _2, "in-addr": _2, "ip6": _2, "iris": _2, "uri": _2, "urn": _2 }], "as": _10, "asia": [1, { "cloudns": _3, "daemon": _3, "dix": _3 }], "at": [1, { "4": _3, "ac": [1, { "sth": _2 }], "co": _2, "gv": _2, "or": _2, "funkfeuer": [0, { "wien": _3 }], "futurecms": [0, { "*": _3, "ex": _6, "in": _6 }], "futurehosting": _3, "futuremailing": _3, "ortsinfo": [0, { "ex": _6, "kunden": _6 }], "biz": _3, "info": _3, "123webseite": _3, "priv": _3, "my": _3, "myspreadshop": _3, "12hp": _3, "2ix": _3, "4lima": _3, "lima-city": _3 }], "au": [1, { "asn": _2, "com": [1, { "cloudlets": [0, { "mel": _3 }], "myspreadshop": _3 }], "edu": [1, { "act": _2, "catholic": _2, "nsw": [1, { "schools": _2 }], "nt": _2, "qld": _2, "sa": _2, "tas": _2, "vic": _2, "wa": _2 }], "gov": [1, { "qld": _2, "sa": _2, "tas": _2, "vic": _2, "wa": _2 }], "id": _2, "net": _2, "org": _2, "conf": _2, "oz": _2, "act": _2, "nsw": _2, "nt": _2, "qld": _2, "sa": _2, "tas": _2, "vic": _2, "wa": _2 }], "aw": [1, { "com": _2 }], "ax": _2, "az": [1, { "biz": _2, "co": _2, "com": _2, "edu": _2, "gov": _2, "info": _2, "int": _2, "mil": _2, "name": _2, "net": _2, "org": _2, "pp": _2, "pro": _2 }], "ba": [1, { "com": _2, "edu": _2, "gov": _2, "mil": _2, "net": _2, "org": _2, "rs": _3 }], "bb": [1, { "biz": _2, "co": _2, "com": _2, "edu": _2, "gov": _2, "info": _2, "net": _2, "org": _2, "store": _2, "tv": _2 }], "bd": _18, "be": [1, { "ac": _2, "cloudns": _3, "webhosting": _3, "interhostsolutions": [0, { "cloud": _3 }], "kuleuven": [0, { "ezproxy": _3 }], "123website": _3, "myspreadshop": _3, "transurl": _6 }], "bf": _10, "bg": [1, { "0": _2, "1": _2, "2": _2, "3": _2, "4": _2, "5": _2, "6": _2, "7": _2, "8": _2, "9": _2, "a": _2, "b": _2, "c": _2, "d": _2, "e": _2, "f": _2, "g": _2, "h": _2, "i": _2, "j": _2, "k": _2, "l": _2, "m": _2, "n": _2, "o": _2, "p": _2, "q": _2, "r": _2, "s": _2, "t": _2, "u": _2, "v": _2, "w": _2, "x": _2, "y": _2, "z": _2, "barsy": _3 }], "bh": _4, "bi": [1, { "co": _2, "com": _2, "edu": _2, "or": _2, "org": _2 }], "biz": [1, { "activetrail": _3, "cloud-ip": _3, "cloudns": _3, "jozi": _3, "dyndns": _3, "for-better": _3, "for-more": _3, "for-some": _3, "for-the": _3, "selfip": _3, "webhop": _3, "orx": _3, "mmafan": _3, "myftp": _3, "no-ip": _3, "dscloud": _3 }], "bj": [1, { "africa": _2, "agro": _2, "architectes": _2, "assur": _2, "avocats": _2, "co": _2, "com": _2, "eco": _2, "econo": _2, "edu": _2, "info": _2, "loisirs": _2, "money": _2, "net": _2, "org": _2, "ote": _2, "restaurant": _2, "resto": _2, "tourism": _2, "univ": _2 }], "bm": _4, "bn": [1, { "com": _2, "edu": _2, "gov": _2, "net": _2, "org": _2, "co": _3 }], "bo": [1, { "com": _2, "edu": _2, "gob": _2, "int": _2, "mil": _2, "net": _2, "org": _2, "tv": _2, "web": _2, "academia": _2, "agro": _2, "arte": _2, "blog": _2, "bolivia": _2, "ciencia": _2, "cooperativa": _2, "democracia": _2, "deporte": _2, "ecologia": _2, "economia": _2, "empresa": _2, "indigena": _2, "industria": _2, "info": _2, "medicina": _2, "movimiento": _2, "musica": _2, "natural": _2, "nombre": _2, "noticias": _2, "patria": _2, "plurinacional": _2, "politica": _2, "profesional": _2, "pueblo": _2, "revista": _2, "salud": _2, "tecnologia": _2, "tksat": _2, "transporte": _2, "wiki": _2 }], "br": [1, { "9guacu": _2, "abc": _2, "adm": _2, "adv": _2, "agr": _2, "aju": _2, "am": _2, "anani": _2, "aparecida": _2, "app": _2, "arq": _2, "art": _2, "ato": _2, "b": _2, "barueri": _2, "belem": _2, "bet": _2, "bhz": _2, "bib": _2, "bio": _2, "blog": _2, "bmd": _2, "boavista": _2, "bsb": _2, "campinagrande": _2, "campinas": _2, "caxias": _2, "cim": _2, "cng": _2, "cnt": _2, "com": [1, { "simplesite": _3 }], "contagem": _2, "coop": _2, "coz": _2, "cri": _2, "cuiaba": _2, "curitiba": _2, "def": _2, "des": _2, "det": _2, "dev": _2, "ecn": _2, "eco": _2, "edu": _2, "emp": _2, "enf": _2, "eng": _2, "esp": _2, "etc": _2, "eti": _2, "far": _2, "feira": _2, "flog": _2, "floripa": _2, "fm": _2, "fnd": _2, "fortal": _2, "fot": _2, "foz": _2, "fst": _2, "g12": _2, "geo": _2, "ggf": _2, "goiania": _2, "gov": [1, { "ac": _2, "al": _2, "am": _2, "ap": _2, "ba": _2, "ce": _2, "df": _2, "es": _2, "go": _2, "ma": _2, "mg": _2, "ms": _2, "mt": _2, "pa": _2, "pb": _2, "pe": _2, "pi": _2, "pr": _2, "rj": _2, "rn": _2, "ro": _2, "rr": _2, "rs": _2, "sc": _2, "se": _2, "sp": _2, "to": _2 }], "gru": _2, "imb": _2, "ind": _2, "inf": _2, "jab": _2, "jampa": _2, "jdf": _2, "joinville": _2, "jor": _2, "jus": _2, "leg": [1, { "ac": _3, "al": _3, "am": _3, "ap": _3, "ba": _3, "ce": _3, "df": _3, "es": _3, "go": _3, "ma": _3, "mg": _3, "ms": _3, "mt": _3, "pa": _3, "pb": _3, "pe": _3, "pi": _3, "pr": _3, "rj": _3, "rn": _3, "ro": _3, "rr": _3, "rs": _3, "sc": _3, "se": _3, "sp": _3, "to": _3 }], "leilao": _2, "lel": _2, "log": _2, "londrina": _2, "macapa": _2, "maceio": _2, "manaus": _2, "maringa": _2, "mat": _2, "med": _2, "mil": _2, "morena": _2, "mp": _2, "mus": _2, "natal": _2, "net": _2, "niteroi": _2, "nom": _18, "not": _2, "ntr": _2, "odo": _2, "ong": _2, "org": _2, "osasco": _2, "palmas": _2, "poa": _2, "ppg": _2, "pro": _2, "psc": _2, "psi": _2, "pvh": _2, "qsl": _2, "radio": _2, "rec": _2, "recife": _2, "rep": _2, "ribeirao": _2, "rio": _2, "riobranco": _2, "riopreto": _2, "salvador": _2, "sampa": _2, "santamaria": _2, "santoandre": _2, "saobernardo": _2, "saogonca": _2, "seg": _2, "sjc": _2, "slg": _2, "slz": _2, "sorocaba": _2, "srv": _2, "taxi": _2, "tc": _2, "tec": _2, "teo": _2, "the": _2, "tmp": _2, "trd": _2, "tur": _2, "tv": _2, "udi": _2, "vet": _2, "vix": _2, "vlog": _2, "wiki": _2, "zlg": _2, "tche": _3 }], "bs": [1, { "com": _2, "edu": _2, "gov": _2, "net": _2, "org": _2, "we": _3 }], "bt": _4, "bv": _2, "bw": [1, { "ac": _2, "co": _2, "gov": _2, "net": _2, "org": _2 }], "by": [1, { "gov": _2, "mil": _2, "com": _2, "of": _2, "mediatech": _3 }], "bz": [1, { "co": _2, "com": _2, "edu": _2, "gov": _2, "net": _2, "org": _2, "za": _3, "mydns": _3, "gsj": _3 }], "ca": [1, { "ab": _2, "bc": _2, "mb": _2, "nb": _2, "nf": _2, "nl": _2, "ns": _2, "nt": _2, "nu": _2, "on": _2, "pe": _2, "qc": _2, "sk": _2, "yk": _2, "gc": _2, "barsy": _3, "awdev": _6, "co": _3, "no-ip": _3, "onid": _3, "myspreadshop": _3, "box": _3 }], "cat": _2, "cc": [1, { "cleverapps": _3, "cloudns": _3, "ftpaccess": _3, "game-server": _3, "myphotos": _3, "scrapping": _3, "twmail": _3, "csx": _3, "fantasyleague": _3, "spawn": [0, { "instances": _3 }] }], "cd": _10, "cf": _2, "cg": _2, "ch": [1, { "square7": _3, "cloudns": _3, "cloudscale": [0, { "cust": _3, "lpg": _20, "rma": _20 }], "objectstorage": [0, { "lpg": _3, "rma": _3 }], "flow": [0, { "ae": [0, { "alp1": _3 }], "appengine": _3 }], "linkyard-cloud": _3, "gotdns": _3, "dnsking": _3, "123website": _3, "myspreadshop": _3, "firenet": [0, { "*": _3, "svc": _6 }], "12hp": _3, "2ix": _3, "4lima": _3, "lima-city": _3 }], "ci": [1, { "ac": _2, "xn--aroport-bya": _2, "a\xE9roport": _2, "asso": _2, "co": _2, "com": _2, "ed": _2, "edu": _2, "go": _2, "gouv": _2, "int": _2, "net": _2, "or": _2, "org": _2 }], "ck": _18, "cl": [1, { "co": _2, "gob": _2, "gov": _2, "mil": _2, "cloudns": _3 }], "cm": [1, { "co": _2, "com": _2, "gov": _2, "net": _2 }], "cn": [1, { "ac": _2, "com": [1, { "amazonaws": [0, { "cn-north-1": [0, { "execute-api": _3, "emrappui-prod": _3, "emrnotebooks-prod": _3, "emrstudio-prod": _3, "dualstack": _23, "s3": _3, "s3-accesspoint": _3, "s3-deprecated": _3, "s3-object-lambda": _3, "s3-website": _3 }], "cn-northwest-1": [0, { "execute-api": _3, "emrappui-prod": _3, "emrnotebooks-prod": _3, "emrstudio-prod": _3, "dualstack": _24, "s3": _3, "s3-accesspoint": _3, "s3-object-lambda": _3, "s3-website": _3 }], "compute": _6, "airflow": [0, { "cn-north-1": _6, "cn-northwest-1": _6 }], "eb": [0, { "cn-north-1": _3, "cn-northwest-1": _3 }], "elb": _6 }], "amazonwebservices": [0, { "on": [0, { "cn-north-1": _11, "cn-northwest-1": _11 }] }], "sagemaker": [0, { "cn-north-1": _13, "cn-northwest-1": _13 }] }], "edu": _2, "gov": _2, "mil": _2, "net": _2, "org": _2, "xn--55qx5d": _2, "\u516C\u53F8": _2, "xn--od0alg": _2, "\u7DB2\u7D61": _2, "xn--io0a7i": _2, "\u7F51\u7EDC": _2, "ah": _2, "bj": _2, "cq": _2, "fj": _2, "gd": _2, "gs": _2, "gx": _2, "gz": _2, "ha": _2, "hb": _2, "he": _2, "hi": _2, "hk": _2, "hl": _2, "hn": _2, "jl": _2, "js": _2, "jx": _2, "ln": _2, "mo": _2, "nm": _2, "nx": _2, "qh": _2, "sc": _2, "sd": _2, "sh": [1, { "as": _3 }], "sn": _2, "sx": _2, "tj": _2, "tw": _2, "xj": _2, "xz": _2, "yn": _2, "zj": _2, "canva-apps": _3, "canvasite": _22, "myqnapcloud": _3, "quickconnect": _25 }], "co": [1, { "com": _2, "edu": _2, "gov": _2, "mil": _2, "net": _2, "nom": _2, "org": _2, "carrd": _3, "crd": _3, "otap": _6, "hidns": _3, "leadpages": _3, "lpages": _3, "mypi": _3, "xmit": _6, "firewalledreplit": _9, "repl": _9, "supabase": _3 }], "com": [1, { "a2hosted": _3, "cpserver": _3, "adobeaemcloud": [2, { "dev": _6 }], "africa": _3, "airkitapps": _3, "airkitapps-au": _3, "aivencloud": _3, "alibabacloudcs": _3, "kasserver": _3, "amazonaws": [0, { "af-south-1": _28, "ap-east-1": _29, "ap-northeast-1": _30, "ap-northeast-2": _30, "ap-northeast-3": _28, "ap-south-1": _30, "ap-south-2": _31, "ap-southeast-1": _30, "ap-southeast-2": _30, "ap-southeast-3": _31, "ap-southeast-4": _31, "ap-southeast-5": [0, { "execute-api": _3, "dualstack": _23, "s3": _3, "s3-accesspoint": _3, "s3-deprecated": _3, "s3-object-lambda": _3, "s3-website": _3 }], "ca-central-1": _33, "ca-west-1": [0, { "execute-api": _3, "emrappui-prod": _3, "emrnotebooks-prod": _3, "emrstudio-prod": _3, "dualstack": _32, "s3": _3, "s3-accesspoint": _3, "s3-accesspoint-fips": _3, "s3-fips": _3, "s3-object-lambda": _3, "s3-website": _3 }], "eu-central-1": _30, "eu-central-2": _31, "eu-north-1": _29, "eu-south-1": _28, "eu-south-2": _31, "eu-west-1": [0, { "execute-api": _3, "emrappui-prod": _3, "emrnotebooks-prod": _3, "emrstudio-prod": _3, "dualstack": _23, "s3": _3, "s3-accesspoint": _3, "s3-deprecated": _3, "s3-object-lambda": _3, "s3-website": _3, "analytics-gateway": _3, "aws-cloud9": _26, "cloud9": _27 }], "eu-west-2": _29, "eu-west-3": _28, "il-central-1": [0, { "execute-api": _3, "emrappui-prod": _3, "emrnotebooks-prod": _3, "emrstudio-prod": _3, "dualstack": _23, "s3": _3, "s3-accesspoint": _3, "s3-object-lambda": _3, "s3-website": _3, "aws-cloud9": _26, "cloud9": [0, { "vfs": _3 }] }], "me-central-1": _31, "me-south-1": _29, "sa-east-1": _28, "us-east-1": [2, { "execute-api": _3, "emrappui-prod": _3, "emrnotebooks-prod": _3, "emrstudio-prod": _3, "dualstack": _32, "s3": _3, "s3-accesspoint": _3, "s3-accesspoint-fips": _3, "s3-deprecated": _3, "s3-fips": _3, "s3-object-lambda": _3, "s3-website": _3, "analytics-gateway": _3, "aws-cloud9": _26, "cloud9": _27 }], "us-east-2": _34, "us-gov-east-1": _36, "us-gov-west-1": _36, "us-west-1": _33, "us-west-2": _34, "compute": _6, "compute-1": _6, "airflow": [0, { "af-south-1": _6, "ap-east-1": _6, "ap-northeast-1": _6, "ap-northeast-2": _6, "ap-northeast-3": _6, "ap-south-1": _6, "ap-south-2": _6, "ap-southeast-1": _6, "ap-southeast-2": _6, "ap-southeast-3": _6, "ap-southeast-4": _6, "ap-southeast-5": _6, "ca-central-1": _6, "ca-west-1": _6, "eu-central-1": _6, "eu-central-2": _6, "eu-north-1": _6, "eu-south-1": _6, "eu-south-2": _6, "eu-west-1": _6, "eu-west-2": _6, "eu-west-3": _6, "il-central-1": _6, "me-central-1": _6, "me-south-1": _6, "sa-east-1": _6, "us-east-1": _6, "us-east-2": _6, "us-west-1": _6, "us-west-2": _6 }], "s3": _3, "s3-1": _3, "s3-ap-east-1": _3, "s3-ap-northeast-1": _3, "s3-ap-northeast-2": _3, "s3-ap-northeast-3": _3, "s3-ap-south-1": _3, "s3-ap-southeast-1": _3, "s3-ap-southeast-2": _3, "s3-ca-central-1": _3, "s3-eu-central-1": _3, "s3-eu-north-1": _3, "s3-eu-west-1": _3, "s3-eu-west-2": _3, "s3-eu-west-3": _3, "s3-external-1": _3, "s3-fips-us-gov-east-1": _3, "s3-fips-us-gov-west-1": _3, "s3-global": [0, { "accesspoint": [0, { "mrap": _3 }] }], "s3-me-south-1": _3, "s3-sa-east-1": _3, "s3-us-east-2": _3, "s3-us-gov-east-1": _3, "s3-us-gov-west-1": _3, "s3-us-west-1": _3, "s3-us-west-2": _3, "s3-website-ap-northeast-1": _3, "s3-website-ap-southeast-1": _3, "s3-website-ap-southeast-2": _3, "s3-website-eu-west-1": _3, "s3-website-sa-east-1": _3, "s3-website-us-east-1": _3, "s3-website-us-gov-west-1": _3, "s3-website-us-west-1": _3, "s3-website-us-west-2": _3, "elb": _6 }], "amazoncognito": [0, { "af-south-1": _37, "ap-east-1": _37, "ap-northeast-1": _37, "ap-northeast-2": _37, "ap-northeast-3": _37, "ap-south-1": _37, "ap-south-2": _37, "ap-southeast-1": _37, "ap-southeast-2": _37, "ap-southeast-3": _37, "ap-southeast-4": _37, "ap-southeast-5": _37, "ap-southeast-7": _37, "ca-central-1": _37, "ca-west-1": _37, "eu-central-1": _37, "eu-central-2": _37, "eu-north-1": _37, "eu-south-1": _37, "eu-south-2": _37, "eu-west-1": _37, "eu-west-2": _37, "eu-west-3": _37, "il-central-1": _37, "me-central-1": _37, "me-south-1": _37, "mx-central-1": _37, "sa-east-1": _37, "us-east-1": _38, "us-east-2": _38, "us-gov-east-1": _39, "us-gov-west-1": _39, "us-west-1": _38, "us-west-2": _38 }], "amplifyapp": _3, "awsapprunner": _6, "awsapps": _3, "elasticbeanstalk": [2, { "af-south-1": _3, "ap-east-1": _3, "ap-northeast-1": _3, "ap-northeast-2": _3, "ap-northeast-3": _3, "ap-south-1": _3, "ap-southeast-1": _3, "ap-southeast-2": _3, "ap-southeast-3": _3, "ca-central-1": _3, "eu-central-1": _3, "eu-north-1": _3, "eu-south-1": _3, "eu-west-1": _3, "eu-west-2": _3, "eu-west-3": _3, "il-central-1": _3, "me-south-1": _3, "sa-east-1": _3, "us-east-1": _3, "us-east-2": _3, "us-gov-east-1": _3, "us-gov-west-1": _3, "us-west-1": _3, "us-west-2": _3 }], "awsglobalaccelerator": _3, "siiites": _3, "appspacehosted": _3, "appspaceusercontent": _3, "on-aptible": _3, "myasustor": _3, "balena-devices": _3, "boutir": _3, "bplaced": _3, "cafjs": _3, "canva-apps": _3, "cdn77-storage": _3, "br": _3, "cn": _3, "de": _3, "eu": _3, "jpn": _3, "mex": _3, "ru": _3, "sa": _3, "uk": _3, "us": _3, "za": _3, "clever-cloud": [0, { "services": _6 }], "dnsabr": _3, "ip-ddns": _3, "jdevcloud": _3, "wpdevcloud": _3, "cf-ipfs": _3, "cloudflare-ipfs": _3, "trycloudflare": _3, "co": _3, "devinapps": _6, "builtwithdark": _3, "datadetect": [0, { "demo": _3, "instance": _3 }], "dattolocal": _3, "dattorelay": _3, "dattoweb": _3, "mydatto": _3, "digitaloceanspaces": _6, "discordsays": _3, "discordsez": _3, "drayddns": _3, "dreamhosters": _3, "durumis": _3, "mydrobo": _3, "blogdns": _3, "cechire": _3, "dnsalias": _3, "dnsdojo": _3, "doesntexist": _3, "dontexist": _3, "doomdns": _3, "dyn-o-saur": _3, "dynalias": _3, "dyndns-at-home": _3, "dyndns-at-work": _3, "dyndns-blog": _3, "dyndns-free": _3, "dyndns-home": _3, "dyndns-ip": _3, "dyndns-mail": _3, "dyndns-office": _3, "dyndns-pics": _3, "dyndns-remote": _3, "dyndns-server": _3, "dyndns-web": _3, "dyndns-wiki": _3, "dyndns-work": _3, "est-a-la-maison": _3, "est-a-la-masion": _3, "est-le-patron": _3, "est-mon-blogueur": _3, "from-ak": _3, "from-al": _3, "from-ar": _3, "from-ca": _3, "from-ct": _3, "from-dc": _3, "from-de": _3, "from-fl": _3, "from-ga": _3, "from-hi": _3, "from-ia": _3, "from-id": _3, "from-il": _3, "from-in": _3, "from-ks": _3, "from-ky": _3, "from-ma": _3, "from-md": _3, "from-mi": _3, "from-mn": _3, "from-mo": _3, "from-ms": _3, "from-mt": _3, "from-nc": _3, "from-nd": _3, "from-ne": _3, "from-nh": _3, "from-nj": _3, "from-nm": _3, "from-nv": _3, "from-oh": _3, "from-ok": _3, "from-or": _3, "from-pa": _3, "from-pr": _3, "from-ri": _3, "from-sc": _3, "from-sd": _3, "from-tn": _3, "from-tx": _3, "from-ut": _3, "from-va": _3, "from-vt": _3, "from-wa": _3, "from-wi": _3, "from-wv": _3, "from-wy": _3, "getmyip": _3, "gotdns": _3, "hobby-site": _3, "homelinux": _3, "homeunix": _3, "iamallama": _3, "is-a-anarchist": _3, "is-a-blogger": _3, "is-a-bookkeeper": _3, "is-a-bulls-fan": _3, "is-a-caterer": _3, "is-a-chef": _3, "is-a-conservative": _3, "is-a-cpa": _3, "is-a-cubicle-slave": _3, "is-a-democrat": _3, "is-a-designer": _3, "is-a-doctor": _3, "is-a-financialadvisor": _3, "is-a-geek": _3, "is-a-green": _3, "is-a-guru": _3, "is-a-hard-worker": _3, "is-a-hunter": _3, "is-a-landscaper": _3, "is-a-lawyer": _3, "is-a-liberal": _3, "is-a-libertarian": _3, "is-a-llama": _3, "is-a-musician": _3, "is-a-nascarfan": _3, "is-a-nurse": _3, "is-a-painter": _3, "is-a-personaltrainer": _3, "is-a-photographer": _3, "is-a-player": _3, "is-a-republican": _3, "is-a-rockstar": _3, "is-a-socialist": _3, "is-a-student": _3, "is-a-teacher": _3, "is-a-techie": _3, "is-a-therapist": _3, "is-an-accountant": _3, "is-an-actor": _3, "is-an-actress": _3, "is-an-anarchist": _3, "is-an-artist": _3, "is-an-engineer": _3, "is-an-entertainer": _3, "is-certified": _3, "is-gone": _3, "is-into-anime": _3, "is-into-cars": _3, "is-into-cartoons": _3, "is-into-games": _3, "is-leet": _3, "is-not-certified": _3, "is-slick": _3, "is-uberleet": _3, "is-with-theband": _3, "isa-geek": _3, "isa-hockeynut": _3, "issmarterthanyou": _3, "likes-pie": _3, "likescandy": _3, "neat-url": _3, "saves-the-whales": _3, "selfip": _3, "sells-for-less": _3, "sells-for-u": _3, "servebbs": _3, "simple-url": _3, "space-to-rent": _3, "teaches-yoga": _3, "writesthisblog": _3, "ddnsfree": _3, "ddnsgeek": _3, "giize": _3, "gleeze": _3, "kozow": _3, "loseyourip": _3, "ooguy": _3, "theworkpc": _3, "mytuleap": _3, "tuleap-partners": _3, "encoreapi": _3, "evennode": [0, { "eu-1": _3, "eu-2": _3, "eu-3": _3, "eu-4": _3, "us-1": _3, "us-2": _3, "us-3": _3, "us-4": _3 }], "onfabrica": _3, "fastly-edge": _3, "fastly-terrarium": _3, "fastvps-server": _3, "mydobiss": _3, "firebaseapp": _3, "fldrv": _3, "forgeblocks": _3, "framercanvas": _3, "freebox-os": _3, "freeboxos": _3, "freemyip": _3, "aliases121": _3, "gentapps": _3, "gentlentapis": _3, "githubusercontent": _3, "0emm": _6, "appspot": [2, { "r": _6 }], "blogspot": _3, "codespot": _3, "googleapis": _3, "googlecode": _3, "pagespeedmobilizer": _3, "withgoogle": _3, "withyoutube": _3, "grayjayleagues": _3, "hatenablog": _3, "hatenadiary": _3, "herokuapp": _3, "gr": _3, "smushcdn": _3, "wphostedmail": _3, "wpmucdn": _3, "pixolino": _3, "apps-1and1": _3, "live-website": _3, "webspace-host": _3, "dopaas": _3, "hosted-by-previder": _41, "hosteur": [0, { "rag-cloud": _3, "rag-cloud-ch": _3 }], "ik-server": [0, { "jcloud": _3, "jcloud-ver-jpc": _3 }], "jelastic": [0, { "demo": _3 }], "massivegrid": _41, "wafaicloud": [0, { "jed": _3, "ryd": _3 }], "webadorsite": _3, "joyent": [0, { "cns": _6 }], "on-forge": _3, "on-vapor": _3, "lpusercontent": _3, "linode": [0, { "members": _3, "nodebalancer": _6 }], "linodeobjects": _6, "linodeusercontent": [0, { "ip": _3 }], "localtonet": _3, "lovableproject": _3, "barsycenter": _3, "barsyonline": _3, "lutrausercontent": _6, "modelscape": _3, "mwcloudnonprod": _3, "polyspace": _3, "mazeplay": _3, "miniserver": _3, "atmeta": _3, "fbsbx": _40, "meteorapp": _42, "routingthecloud": _3, "same-app": _3, "same-preview": _3, "mydbserver": _3, "hostedpi": _3, "mythic-beasts": [0, { "caracal": _3, "customer": _3, "fentiger": _3, "lynx": _3, "ocelot": _3, "oncilla": _3, "onza": _3, "sphinx": _3, "vs": _3, "x": _3, "yali": _3 }], "nospamproxy": [0, { "cloud": [2, { "o365": _3 }] }], "4u": _3, "nfshost": _3, "3utilities": _3, "blogsyte": _3, "ciscofreak": _3, "damnserver": _3, "ddnsking": _3, "ditchyourip": _3, "dnsiskinky": _3, "dynns": _3, "geekgalaxy": _3, "health-carereform": _3, "homesecuritymac": _3, "homesecuritypc": _3, "myactivedirectory": _3, "mysecuritycamera": _3, "myvnc": _3, "net-freaks": _3, "onthewifi": _3, "point2this": _3, "quicksytes": _3, "securitytactics": _3, "servebeer": _3, "servecounterstrike": _3, "serveexchange": _3, "serveftp": _3, "servegame": _3, "servehalflife": _3, "servehttp": _3, "servehumour": _3, "serveirc": _3, "servemp3": _3, "servep2p": _3, "servepics": _3, "servequake": _3, "servesarcasm": _3, "stufftoread": _3, "unusualperson": _3, "workisboring": _3, "myiphost": _3, "observableusercontent": [0, { "static": _3 }], "simplesite": _3, "oaiusercontent": _6, "orsites": _3, "operaunite": _3, "customer-oci": [0, { "*": _3, "oci": _6, "ocp": _6, "ocs": _6 }], "oraclecloudapps": _6, "oraclegovcloudapps": _6, "authgear-staging": _3, "authgearapps": _3, "skygearapp": _3, "outsystemscloud": _3, "ownprovider": _3, "pgfog": _3, "pagexl": _3, "gotpantheon": _3, "paywhirl": _6, "upsunapp": _3, "postman-echo": _3, "prgmr": [0, { "xen": _3 }], "project-study": [0, { "dev": _3 }], "pythonanywhere": _42, "qa2": _3, "alpha-myqnapcloud": _3, "dev-myqnapcloud": _3, "mycloudnas": _3, "mynascloud": _3, "myqnapcloud": _3, "qualifioapp": _3, "ladesk": _3, "qualyhqpartner": _6, "qualyhqportal": _6, "qbuser": _3, "quipelements": _6, "rackmaze": _3, "readthedocs-hosted": _3, "rhcloud": _3, "onrender": _3, "render": _43, "subsc-pay": _3, "180r": _3, "dojin": _3, "sakuratan": _3, "sakuraweb": _3, "x0": _3, "code": [0, { "builder": _6, "dev-builder": _6, "stg-builder": _6 }], "salesforce": [0, { "platform": [0, { "code-builder-stg": [0, { "test": [0, { "001": _6 }] }] }] }], "logoip": _3, "scrysec": _3, "firewall-gateway": _3, "myshopblocks": _3, "myshopify": _3, "shopitsite": _3, "1kapp": _3, "appchizi": _3, "applinzi": _3, "sinaapp": _3, "vipsinaapp": _3, "streamlitapp": _3, "try-snowplow": _3, "playstation-cloud": _3, "myspreadshop": _3, "w-corp-staticblitz": _3, "w-credentialless-staticblitz": _3, "w-staticblitz": _3, "stackhero-network": _3, "stdlib": [0, { "api": _3 }], "strapiapp": [2, { "media": _3 }], "streak-link": _3, "streaklinks": _3, "streakusercontent": _3, "temp-dns": _3, "dsmynas": _3, "familyds": _3, "mytabit": _3, "taveusercontent": _3, "tb-hosting": _44, "reservd": _3, "thingdustdata": _3, "townnews-staging": _3, "typeform": [0, { "pro": _3 }], "hk": _3, "it": _3, "deus-canvas": _3, "vultrobjects": _6, "wafflecell": _3, "hotelwithflight": _3, "reserve-online": _3, "cprapid": _3, "pleskns": _3, "remotewd": _3, "wiardweb": [0, { "pages": _3 }], "wixsite": _3, "wixstudio": _3, "messwithdns": _3, "woltlab-demo": _3, "wpenginepowered": [2, { "js": _3 }], "xnbay": [2, { "u2": _3, "u2-local": _3 }], "yolasite": _3 }], "coop": _2, "cr": [1, { "ac": _2, "co": _2, "ed": _2, "fi": _2, "go": _2, "or": _2, "sa": _2 }], "cu": [1, { "com": _2, "edu": _2, "gob": _2, "inf": _2, "nat": _2, "net": _2, "org": _2 }], "cv": [1, { "com": _2, "edu": _2, "id": _2, "int": _2, "net": _2, "nome": _2, "org": _2, "publ": _2 }], "cw": _45, "cx": [1, { "gov": _2, "cloudns": _3, "ath": _3, "info": _3, "assessments": _3, "calculators": _3, "funnels": _3, "paynow": _3, "quizzes": _3, "researched": _3, "tests": _3 }], "cy": [1, { "ac": _2, "biz": _2, "com": [1, { "scaleforce": _46 }], "ekloges": _2, "gov": _2, "ltd": _2, "mil": _2, "net": _2, "org": _2, "press": _2, "pro": _2, "tm": _2 }], "cz": [1, { "gov": _2, "contentproxy9": [0, { "rsc": _3 }], "realm": _3, "e4": _3, "co": _3, "metacentrum": [0, { "cloud": _6, "custom": _3 }], "muni": [0, { "cloud": [0, { "flt": _3, "usr": _3 }] }] }], "de": [1, { "bplaced": _3, "square7": _3, "com": _3, "cosidns": _47, "dnsupdater": _3, "dynamisches-dns": _3, "internet-dns": _3, "l-o-g-i-n": _3, "ddnss": [2, { "dyn": _3, "dyndns": _3 }], "dyn-ip24": _3, "dyndns1": _3, "home-webserver": [2, { "dyn": _3 }], "myhome-server": _3, "dnshome": _3, "fuettertdasnetz": _3, "isteingeek": _3, "istmein": _3, "lebtimnetz": _3, "leitungsen": _3, "traeumtgerade": _3, "frusky": _6, "goip": _3, "xn--gnstigbestellen-zvb": _3, "g\xFCnstigbestellen": _3, "xn--gnstigliefern-wob": _3, "g\xFCnstigliefern": _3, "hs-heilbronn": [0, { "it": [0, { "pages": _3, "pages-research": _3 }] }], "dyn-berlin": _3, "in-berlin": _3, "in-brb": _3, "in-butter": _3, "in-dsl": _3, "in-vpn": _3, "iservschule": _3, "mein-iserv": _3, "schuldock": _3, "schulplattform": _3, "schulserver": _3, "test-iserv": _3, "keymachine": _3, "co": _3, "git-repos": _3, "lcube-server": _3, "svn-repos": _3, "barsy": _3, "webspaceconfig": _3, "123webseite": _3, "rub": _3, "ruhr-uni-bochum": [2, { "noc": [0, { "io": _3 }] }], "logoip": _3, "firewall-gateway": _3, "my-gateway": _3, "my-router": _3, "spdns": _3, "my": _3, "speedpartner": [0, { "customer": _3 }], "myspreadshop": _3, "taifun-dns": _3, "12hp": _3, "2ix": _3, "4lima": _3, "lima-city": _3, "dd-dns": _3, "dray-dns": _3, "draydns": _3, "dyn-vpn": _3, "dynvpn": _3, "mein-vigor": _3, "my-vigor": _3, "my-wan": _3, "syno-ds": _3, "synology-diskstation": _3, "synology-ds": _3, "virtual-user": _3, "virtualuser": _3, "community-pro": _3, "diskussionsbereich": _3 }], "dj": _2, "dk": [1, { "biz": _3, "co": _3, "firm": _3, "reg": _3, "store": _3, "123hjemmeside": _3, "myspreadshop": _3 }], "dm": _49, "do": [1, { "art": _2, "com": _2, "edu": _2, "gob": _2, "gov": _2, "mil": _2, "net": _2, "org": _2, "sld": _2, "web": _2 }], "dz": [1, { "art": _2, "asso": _2, "com": _2, "edu": _2, "gov": _2, "net": _2, "org": _2, "pol": _2, "soc": _2, "tm": _2 }], "ec": [1, { "abg": _2, "adm": _2, "agron": _2, "arqt": _2, "art": _2, "bar": _2, "chef": _2, "com": _2, "cont": _2, "cpa": _2, "cue": _2, "dent": _2, "dgn": _2, "disco": _2, "doc": _2, "edu": _2, "eng": _2, "esm": _2, "fin": _2, "fot": _2, "gal": _2, "gob": _2, "gov": _2, "gye": _2, "ibr": _2, "info": _2, "k12": _2, "lat": _2, "loj": _2, "med": _2, "mil": _2, "mktg": _2, "mon": _2, "net": _2, "ntr": _2, "odont": _2, "org": _2, "pro": _2, "prof": _2, "psic": _2, "psiq": _2, "pub": _2, "rio": _2, "rrpp": _2, "sal": _2, "tech": _2, "tul": _2, "tur": _2, "uio": _2, "vet": _2, "xxx": _2, "base": _3, "official": _3 }], "edu": [1, { "rit": [0, { "git-pages": _3 }] }], "ee": [1, { "aip": _2, "com": _2, "edu": _2, "fie": _2, "gov": _2, "lib": _2, "med": _2, "org": _2, "pri": _2, "riik": _2 }], "eg": [1, { "ac": _2, "com": _2, "edu": _2, "eun": _2, "gov": _2, "info": _2, "me": _2, "mil": _2, "name": _2, "net": _2, "org": _2, "sci": _2, "sport": _2, "tv": _2 }], "er": _18, "es": [1, { "com": _2, "edu": _2, "gob": _2, "nom": _2, "org": _2, "123miweb": _3, "myspreadshop": _3 }], "et": [1, { "biz": _2, "com": _2, "edu": _2, "gov": _2, "info": _2, "name": _2, "net": _2, "org": _2 }], "eu": [1, { "airkitapps": _3, "cloudns": _3, "dogado": [0, { "jelastic": _3 }], "barsy": _3, "spdns": _3, "nxa": _6, "transurl": _6, "diskstation": _3 }], "fi": [1, { "aland": _2, "dy": _3, "xn--hkkinen-5wa": _3, "h\xE4kkinen": _3, "iki": _3, "cloudplatform": [0, { "fi": _3 }], "datacenter": [0, { "demo": _3, "paas": _3 }], "kapsi": _3, "123kotisivu": _3, "myspreadshop": _3 }], "fj": [1, { "ac": _2, "biz": _2, "com": _2, "gov": _2, "info": _2, "mil": _2, "name": _2, "net": _2, "org": _2, "pro": _2 }], "fk": _18, "fm": [1, { "com": _2, "edu": _2, "net": _2, "org": _2, "radio": _3, "user": _6 }], "fo": _2, "fr": [1, { "asso": _2, "com": _2, "gouv": _2, "nom": _2, "prd": _2, "tm": _2, "avoues": _2, "cci": _2, "greta": _2, "huissier-justice": _2, "en-root": _3, "fbx-os": _3, "fbxos": _3, "freebox-os": _3, "freeboxos": _3, "goupile": _3, "123siteweb": _3, "on-web": _3, "chirurgiens-dentistes-en-france": _3, "dedibox": _3, "aeroport": _3, "avocat": _3, "chambagri": _3, "chirurgiens-dentistes": _3, "experts-comptables": _3, "medecin": _3, "notaires": _3, "pharmacien": _3, "port": _3, "veterinaire": _3, "myspreadshop": _3, "ynh": _3 }], "ga": _2, "gb": _2, "gd": [1, { "edu": _2, "gov": _2 }], "ge": [1, { "com": _2, "edu": _2, "gov": _2, "net": _2, "org": _2, "pvt": _2, "school": _2 }], "gf": _2, "gg": [1, { "co": _2, "net": _2, "org": _2, "botdash": _3, "kaas": _3, "stackit": _3, "panel": [2, { "daemon": _3 }] }], "gh": [1, { "biz": _2, "com": _2, "edu": _2, "gov": _2, "mil": _2, "net": _2, "org": _2 }], "gi": [1, { "com": _2, "edu": _2, "gov": _2, "ltd": _2, "mod": _2, "org": _2 }], "gl": [1, { "co": _2, "com": _2, "edu": _2, "net": _2, "org": _2 }], "gm": _2, "gn": [1, { "ac": _2, "com": _2, "edu": _2, "gov": _2, "net": _2, "org": _2 }], "gov": _2, "gp": [1, { "asso": _2, "com": _2, "edu": _2, "mobi": _2, "net": _2, "org": _2 }], "gq": _2, "gr": [1, { "com": _2, "edu": _2, "gov": _2, "net": _2, "org": _2, "barsy": _3, "simplesite": _3 }], "gs": _2, "gt": [1, { "com": _2, "edu": _2, "gob": _2, "ind": _2, "mil": _2, "net": _2, "org": _2 }], "gu": [1, { "com": _2, "edu": _2, "gov": _2, "guam": _2, "info": _2, "net": _2, "org": _2, "web": _2 }], "gw": [1, { "nx": _3 }], "gy": _49, "hk": [1, { "com": _2, "edu": _2, "gov": _2, "idv": _2, "net": _2, "org": _2, "xn--ciqpn": _2, "\u4E2A\u4EBA": _2, "xn--gmqw5a": _2, "\u500B\u4EBA": _2, "xn--55qx5d": _2, "\u516C\u53F8": _2, "xn--mxtq1m": _2, "\u653F\u5E9C": _2, "xn--lcvr32d": _2, "\u654E\u80B2": _2, "xn--wcvs22d": _2, "\u6559\u80B2": _2, "xn--gmq050i": _2, "\u7B87\u4EBA": _2, "xn--uc0atv": _2, "\u7D44\u7E54": _2, "xn--uc0ay4a": _2, "\u7D44\u7EC7": _2, "xn--od0alg": _2, "\u7DB2\u7D61": _2, "xn--zf0avx": _2, "\u7DB2\u7EDC": _2, "xn--mk0axi": _2, "\u7EC4\u7E54": _2, "xn--tn0ag": _2, "\u7EC4\u7EC7": _2, "xn--od0aq3b": _2, "\u7F51\u7D61": _2, "xn--io0a7i": _2, "\u7F51\u7EDC": _2, "inc": _3, "ltd": _3 }], "hm": _2, "hn": [1, { "com": _2, "edu": _2, "gob": _2, "mil": _2, "net": _2, "org": _2 }], "hr": [1, { "com": _2, "from": _2, "iz": _2, "name": _2, "brendly": _52 }], "ht": [1, { "adult": _2, "art": _2, "asso": _2, "com": _2, "coop": _2, "edu": _2, "firm": _2, "gouv": _2, "info": _2, "med": _2, "net": _2, "org": _2, "perso": _2, "pol": _2, "pro": _2, "rel": _2, "shop": _2, "rt": _3 }], "hu": [1, { "2000": _2, "agrar": _2, "bolt": _2, "casino": _2, "city": _2, "co": _2, "erotica": _2, "erotika": _2, "film": _2, "forum": _2, "games": _2, "hotel": _2, "info": _2, "ingatlan": _2, "jogasz": _2, "konyvelo": _2, "lakas": _2, "media": _2, "news": _2, "org": _2, "priv": _2, "reklam": _2, "sex": _2, "shop": _2, "sport": _2, "suli": _2, "szex": _2, "tm": _2, "tozsde": _2, "utazas": _2, "video": _2 }], "id": [1, { "ac": _2, "biz": _2, "co": _2, "desa": _2, "go": _2, "kop": _2, "mil": _2, "my": _2, "net": _2, "or": _2, "ponpes": _2, "sch": _2, "web": _2, "zone": _3 }], "ie": [1, { "gov": _2, "myspreadshop": _3 }], "il": [1, { "ac": _2, "co": [1, { "ravpage": _3, "mytabit": _3, "tabitorder": _3 }], "gov": _2, "idf": _2, "k12": _2, "muni": _2, "net": _2, "org": _2 }], "xn--4dbrk0ce": [1, { "xn--4dbgdty6c": _2, "xn--5dbhl8d": _2, "xn--8dbq2a": _2, "xn--hebda8b": _2 }], "\u05D9\u05E9\u05E8\u05D0\u05DC": [1, { "\u05D0\u05E7\u05D3\u05DE\u05D9\u05D4": _2, "\u05D9\u05E9\u05D5\u05D1": _2, "\u05E6\u05D4\u05DC": _2, "\u05DE\u05DE\u05E9\u05DC": _2 }], "im": [1, { "ac": _2, "co": [1, { "ltd": _2, "plc": _2 }], "com": _2, "net": _2, "org": _2, "tt": _2, "tv": _2 }], "in": [1, { "5g": _2, "6g": _2, "ac": _2, "ai": _2, "am": _2, "bihar": _2, "biz": _2, "business": _2, "ca": _2, "cn": _2, "co": _2, "com": _2, "coop": _2, "cs": _2, "delhi": _2, "dr": _2, "edu": _2, "er": _2, "firm": _2, "gen": _2, "gov": _2, "gujarat": _2, "ind": _2, "info": _2, "int": _2, "internet": _2, "io": _2, "me": _2, "mil": _2, "net": _2, "nic": _2, "org": _2, "pg": _2, "post": _2, "pro": _2, "res": _2, "travel": _2, "tv": _2, "uk": _2, "up": _2, "us": _2, "cloudns": _3, "barsy": _3, "web": _3, "supabase": _3 }], "info": [1, { "cloudns": _3, "dynamic-dns": _3, "barrel-of-knowledge": _3, "barrell-of-knowledge": _3, "dyndns": _3, "for-our": _3, "groks-the": _3, "groks-this": _3, "here-for-more": _3, "knowsitall": _3, "selfip": _3, "webhop": _3, "barsy": _3, "mayfirst": _3, "mittwald": _3, "mittwaldserver": _3, "typo3server": _3, "dvrcam": _3, "ilovecollege": _3, "no-ip": _3, "forumz": _3, "nsupdate": _3, "dnsupdate": _3, "v-info": _3 }], "int": [1, { "eu": _2 }], "io": [1, { "2038": _3, "co": _2, "com": _2, "edu": _2, "gov": _2, "mil": _2, "net": _2, "nom": _2, "org": _2, "on-acorn": _6, "myaddr": _3, "apigee": _3, "b-data": _3, "beagleboard": _3, "bitbucket": _3, "bluebite": _3, "boxfuse": _3, "brave": _7, "browsersafetymark": _3, "bubble": _53, "bubbleapps": _3, "bigv": [0, { "uk0": _3 }], "cleverapps": _3, "cloudbeesusercontent": _3, "dappnode": [0, { "dyndns": _3 }], "darklang": _3, "definima": _3, "dedyn": _3, "icp0": _54, "icp1": _54, "qzz": _3, "fh-muenster": _3, "shw": _3, "forgerock": [0, { "id": _3 }], "github": _3, "gitlab": _3, "lolipop": _3, "hasura-app": _3, "hostyhosting": _3, "hypernode": _3, "moonscale": _6, "beebyte": _41, "beebyteapp": [0, { "sekd1": _3 }], "jele": _3, "webthings": _3, "loginline": _3, "barsy": _3, "azurecontainer": _6, "ngrok": [2, { "ap": _3, "au": _3, "eu": _3, "in": _3, "jp": _3, "sa": _3, "us": _3 }], "nodeart": [0, { "stage": _3 }], "pantheonsite": _3, "pstmn": [2, { "mock": _3 }], "protonet": _3, "qcx": [2, { "sys": _6 }], "qoto": _3, "vaporcloud": _3, "myrdbx": _3, "rb-hosting": _44, "on-k3s": _6, "on-rio": _6, "readthedocs": _3, "resindevice": _3, "resinstaging": [0, { "devices": _3 }], "hzc": _3, "sandcats": _3, "scrypted": [0, { "client": _3 }], "mo-siemens": _3, "lair": _40, "stolos": _6, "musician": _3, "utwente": _3, "edugit": _3, "telebit": _3, "thingdust": [0, { "dev": _55, "disrec": _55, "prod": _56, "testing": _55 }], "tickets": _3, "webflow": _3, "webflowtest": _3, "editorx": _3, "wixstudio": _3, "basicserver": _3, "virtualserver": _3 }], "iq": _5, "ir": [1, { "ac": _2, "co": _2, "gov": _2, "id": _2, "net": _2, "org": _2, "sch": _2, "xn--mgba3a4f16a": _2, "\u0627\u06CC\u0631\u0627\u0646": _2, "xn--mgba3a4fra": _2, "\u0627\u064A\u0631\u0627\u0646": _2, "arvanedge": _3, "vistablog": _3 }], "is": _2, "it": [1, { "edu": _2, "gov": _2, "abr": _2, "abruzzo": _2, "aosta-valley": _2, "aostavalley": _2, "bas": _2, "basilicata": _2, "cal": _2, "calabria": _2, "cam": _2, "campania": _2, "emilia-romagna": _2, "emiliaromagna": _2, "emr": _2, "friuli-v-giulia": _2, "friuli-ve-giulia": _2, "friuli-vegiulia": _2, "friuli-venezia-giulia": _2, "friuli-veneziagiulia": _2, "friuli-vgiulia": _2, "friuliv-giulia": _2, "friulive-giulia": _2, "friulivegiulia": _2, "friulivenezia-giulia": _2, "friuliveneziagiulia": _2, "friulivgiulia": _2, "fvg": _2, "laz": _2, "lazio": _2, "lig": _2, "liguria": _2, "lom": _2, "lombardia": _2, "lombardy": _2, "lucania": _2, "mar": _2, "marche": _2, "mol": _2, "molise": _2, "piedmont": _2, "piemonte": _2, "pmn": _2, "pug": _2, "puglia": _2, "sar": _2, "sardegna": _2, "sardinia": _2, "sic": _2, "sicilia": _2, "sicily": _2, "taa": _2, "tos": _2, "toscana": _2, "trentin-sud-tirol": _2, "xn--trentin-sd-tirol-rzb": _2, "trentin-s\xFCd-tirol": _2, "trentin-sudtirol": _2, "xn--trentin-sdtirol-7vb": _2, "trentin-s\xFCdtirol": _2, "trentin-sued-tirol": _2, "trentin-suedtirol": _2, "trentino": _2, "trentino-a-adige": _2, "trentino-aadige": _2, "trentino-alto-adige": _2, "trentino-altoadige": _2, "trentino-s-tirol": _2, "trentino-stirol": _2, "trentino-sud-tirol": _2, "xn--trentino-sd-tirol-c3b": _2, "trentino-s\xFCd-tirol": _2, "trentino-sudtirol": _2, "xn--trentino-sdtirol-szb": _2, "trentino-s\xFCdtirol": _2, "trentino-sued-tirol": _2, "trentino-suedtirol": _2, "trentinoa-adige": _2, "trentinoaadige": _2, "trentinoalto-adige": _2, "trentinoaltoadige": _2, "trentinos-tirol": _2, "trentinostirol": _2, "trentinosud-tirol": _2, "xn--trentinosd-tirol-rzb": _2, "trentinos\xFCd-tirol": _2, "trentinosudtirol": _2, "xn--trentinosdtirol-7vb": _2, "trentinos\xFCdtirol": _2, "trentinosued-tirol": _2, "trentinosuedtirol": _2, "trentinsud-tirol": _2, "xn--trentinsd-tirol-6vb": _2, "trentins\xFCd-tirol": _2, "trentinsudtirol": _2, "xn--trentinsdtirol-nsb": _2, "trentins\xFCdtirol": _2, "trentinsued-tirol": _2, "trentinsuedtirol": _2, "tuscany": _2, "umb": _2, "umbria": _2, "val-d-aosta": _2, "val-daosta": _2, "vald-aosta": _2, "valdaosta": _2, "valle-aosta": _2, "valle-d-aosta": _2, "valle-daosta": _2, "valleaosta": _2, "valled-aosta": _2, "valledaosta": _2, "vallee-aoste": _2, "xn--valle-aoste-ebb": _2, "vall\xE9e-aoste": _2, "vallee-d-aoste": _2, "xn--valle-d-aoste-ehb": _2, "vall\xE9e-d-aoste": _2, "valleeaoste": _2, "xn--valleaoste-e7a": _2, "vall\xE9eaoste": _2, "valleedaoste": _2, "xn--valledaoste-ebb": _2, "vall\xE9edaoste": _2, "vao": _2, "vda": _2, "ven": _2, "veneto": _2, "ag": _2, "agrigento": _2, "al": _2, "alessandria": _2, "alto-adige": _2, "altoadige": _2, "an": _2, "ancona": _2, "andria-barletta-trani": _2, "andria-trani-barletta": _2, "andriabarlettatrani": _2, "andriatranibarletta": _2, "ao": _2, "aosta": _2, "aoste": _2, "ap": _2, "aq": _2, "aquila": _2, "ar": _2, "arezzo": _2, "ascoli-piceno": _2, "ascolipiceno": _2, "asti": _2, "at": _2, "av": _2, "avellino": _2, "ba": _2, "balsan": _2, "balsan-sudtirol": _2, "xn--balsan-sdtirol-nsb": _2, "balsan-s\xFCdtirol": _2, "balsan-suedtirol": _2, "bari": _2, "barletta-trani-andria": _2, "barlettatraniandria": _2, "belluno": _2, "benevento": _2, "bergamo": _2, "bg": _2, "bi": _2, "biella": _2, "bl": _2, "bn": _2, "bo": _2, "bologna": _2, "bolzano": _2, "bolzano-altoadige": _2, "bozen": _2, "bozen-sudtirol": _2, "xn--bozen-sdtirol-2ob": _2, "bozen-s\xFCdtirol": _2, "bozen-suedtirol": _2, "br": _2, "brescia": _2, "brindisi": _2, "bs": _2, "bt": _2, "bulsan": _2, "bulsan-sudtirol": _2, "xn--bulsan-sdtirol-nsb": _2, "bulsan-s\xFCdtirol": _2, "bulsan-suedtirol": _2, "bz": _2, "ca": _2, "cagliari": _2, "caltanissetta": _2, "campidano-medio": _2, "campidanomedio": _2, "campobasso": _2, "carbonia-iglesias": _2, "carboniaiglesias": _2, "carrara-massa": _2, "carraramassa": _2, "caserta": _2, "catania": _2, "catanzaro": _2, "cb": _2, "ce": _2, "cesena-forli": _2, "xn--cesena-forl-mcb": _2, "cesena-forl\xEC": _2, "cesenaforli": _2, "xn--cesenaforl-i8a": _2, "cesenaforl\xEC": _2, "ch": _2, "chieti": _2, "ci": _2, "cl": _2, "cn": _2, "co": _2, "como": _2, "cosenza": _2, "cr": _2, "cremona": _2, "crotone": _2, "cs": _2, "ct": _2, "cuneo": _2, "cz": _2, "dell-ogliastra": _2, "dellogliastra": _2, "en": _2, "enna": _2, "fc": _2, "fe": _2, "fermo": _2, "ferrara": _2, "fg": _2, "fi": _2, "firenze": _2, "florence": _2, "fm": _2, "foggia": _2, "forli-cesena": _2, "xn--forl-cesena-fcb": _2, "forl\xEC-cesena": _2, "forlicesena": _2, "xn--forlcesena-c8a": _2, "forl\xECcesena": _2, "fr": _2, "frosinone": _2, "ge": _2, "genoa": _2, "genova": _2, "go": _2, "gorizia": _2, "gr": _2, "grosseto": _2, "iglesias-carbonia": _2, "iglesiascarbonia": _2, "im": _2, "imperia": _2, "is": _2, "isernia": _2, "kr": _2, "la-spezia": _2, "laquila": _2, "laspezia": _2, "latina": _2, "lc": _2, "le": _2, "lecce": _2, "lecco": _2, "li": _2, "livorno": _2, "lo": _2, "lodi": _2, "lt": _2, "lu": _2, "lucca": _2, "macerata": _2, "mantova": _2, "massa-carrara": _2, "massacarrara": _2, "matera": _2, "mb": _2, "mc": _2, "me": _2, "medio-campidano": _2, "mediocampidano": _2, "messina": _2, "mi": _2, "milan": _2, "milano": _2, "mn": _2, "mo": _2, "modena": _2, "monza": _2, "monza-brianza": _2, "monza-e-della-brianza": _2, "monzabrianza": _2, "monzaebrianza": _2, "monzaedellabrianza": _2, "ms": _2, "mt": _2, "na": _2, "naples": _2, "napoli": _2, "no": _2, "novara": _2, "nu": _2, "nuoro": _2, "og": _2, "ogliastra": _2, "olbia-tempio": _2, "olbiatempio": _2, "or": _2, "oristano": _2, "ot": _2, "pa": _2, "padova": _2, "padua": _2, "palermo": _2, "parma": _2, "pavia": _2, "pc": _2, "pd": _2, "pe": _2, "perugia": _2, "pesaro-urbino": _2, "pesarourbino": _2, "pescara": _2, "pg": _2, "pi": _2, "piacenza": _2, "pisa": _2, "pistoia": _2, "pn": _2, "po": _2, "pordenone": _2, "potenza": _2, "pr": _2, "prato": _2, "pt": _2, "pu": _2, "pv": _2, "pz": _2, "ra": _2, "ragusa": _2, "ravenna": _2, "rc": _2, "re": _2, "reggio-calabria": _2, "reggio-emilia": _2, "reggiocalabria": _2, "reggioemilia": _2, "rg": _2, "ri": _2, "rieti": _2, "rimini": _2, "rm": _2, "rn": _2, "ro": _2, "roma": _2, "rome": _2, "rovigo": _2, "sa": _2, "salerno": _2, "sassari": _2, "savona": _2, "si": _2, "siena": _2, "siracusa": _2, "so": _2, "sondrio": _2, "sp": _2, "sr": _2, "ss": _2, "xn--sdtirol-n2a": _2, "s\xFCdtirol": _2, "suedtirol": _2, "sv": _2, "ta": _2, "taranto": _2, "te": _2, "tempio-olbia": _2, "tempioolbia": _2, "teramo": _2, "terni": _2, "tn": _2, "to": _2, "torino": _2, "tp": _2, "tr": _2, "trani-andria-barletta": _2, "trani-barletta-andria": _2, "traniandriabarletta": _2, "tranibarlettaandria": _2, "trapani": _2, "trento": _2, "treviso": _2, "trieste": _2, "ts": _2, "turin": _2, "tv": _2, "ud": _2, "udine": _2, "urbino-pesaro": _2, "urbinopesaro": _2, "va": _2, "varese": _2, "vb": _2, "vc": _2, "ve": _2, "venezia": _2, "venice": _2, "verbania": _2, "vercelli": _2, "verona": _2, "vi": _2, "vibo-valentia": _2, "vibovalentia": _2, "vicenza": _2, "viterbo": _2, "vr": _2, "vs": _2, "vt": _2, "vv": _2, "12chars": _3, "ibxos": _3, "iliadboxos": _3, "neen": [0, { "jc": _3 }], "123homepage": _3, "16-b": _3, "32-b": _3, "64-b": _3, "myspreadshop": _3, "syncloud": _3 }], "je": [1, { "co": _2, "net": _2, "org": _2, "of": _3 }], "jm": _18, "jo": [1, { "agri": _2, "ai": _2, "com": _2, "edu": _2, "eng": _2, "fm": _2, "gov": _2, "mil": _2, "net": _2, "org": _2, "per": _2, "phd": _2, "sch": _2, "tv": _2 }], "jobs": _2, "jp": [1, { "ac": _2, "ad": _2, "co": _2, "ed": _2, "go": _2, "gr": _2, "lg": _2, "ne": [1, { "aseinet": _51, "gehirn": _3, "ivory": _3, "mail-box": _3, "mints": _3, "mokuren": _3, "opal": _3, "sakura": _3, "sumomo": _3, "topaz": _3 }], "or": _2, "aichi": [1, { "aisai": _2, "ama": _2, "anjo": _2, "asuke": _2, "chiryu": _2, "chita": _2, "fuso": _2, "gamagori": _2, "handa": _2, "hazu": _2, "hekinan": _2, "higashiura": _2, "ichinomiya": _2, "inazawa": _2, "inuyama": _2, "isshiki": _2, "iwakura": _2, "kanie": _2, "kariya": _2, "kasugai": _2, "kira": _2, "kiyosu": _2, "komaki": _2, "konan": _2, "kota": _2, "mihama": _2, "miyoshi": _2, "nishio": _2, "nisshin": _2, "obu": _2, "oguchi": _2, "oharu": _2, "okazaki": _2, "owariasahi": _2, "seto": _2, "shikatsu": _2, "shinshiro": _2, "shitara": _2, "tahara": _2, "takahama": _2, "tobishima": _2, "toei": _2, "togo": _2, "tokai": _2, "tokoname": _2, "toyoake": _2, "toyohashi": _2, "toyokawa": _2, "toyone": _2, "toyota": _2, "tsushima": _2, "yatomi": _2 }], "akita": [1, { "akita": _2, "daisen": _2, "fujisato": _2, "gojome": _2, "hachirogata": _2, "happou": _2, "higashinaruse": _2, "honjo": _2, "honjyo": _2, "ikawa": _2, "kamikoani": _2, "kamioka": _2, "katagami": _2, "kazuno": _2, "kitaakita": _2, "kosaka": _2, "kyowa": _2, "misato": _2, "mitane": _2, "moriyoshi": _2, "nikaho": _2, "noshiro": _2, "odate": _2, "oga": _2, "ogata": _2, "semboku": _2, "yokote": _2, "yurihonjo": _2 }], "aomori": [1, { "aomori": _2, "gonohe": _2, "hachinohe": _2, "hashikami": _2, "hiranai": _2, "hirosaki": _2, "itayanagi": _2, "kuroishi": _2, "misawa": _2, "mutsu": _2, "nakadomari": _2, "noheji": _2, "oirase": _2, "owani": _2, "rokunohe": _2, "sannohe": _2, "shichinohe": _2, "shingo": _2, "takko": _2, "towada": _2, "tsugaru": _2, "tsuruta": _2 }], "chiba": [1, { "abiko": _2, "asahi": _2, "chonan": _2, "chosei": _2, "choshi": _2, "chuo": _2, "funabashi": _2, "futtsu": _2, "hanamigawa": _2, "ichihara": _2, "ichikawa": _2, "ichinomiya": _2, "inzai": _2, "isumi": _2, "kamagaya": _2, "kamogawa": _2, "kashiwa": _2, "katori": _2, "katsuura": _2, "kimitsu": _2, "kisarazu": _2, "kozaki": _2, "kujukuri": _2, "kyonan": _2, "matsudo": _2, "midori": _2, "mihama": _2, "minamiboso": _2, "mobara": _2, "mutsuzawa": _2, "nagara": _2, "nagareyama": _2, "narashino": _2, "narita": _2, "noda": _2, "oamishirasato": _2, "omigawa": _2, "onjuku": _2, "otaki": _2, "sakae": _2, "sakura": _2, "shimofusa": _2, "shirako": _2, "shiroi": _2, "shisui": _2, "sodegaura": _2, "sosa": _2, "tako": _2, "tateyama": _2, "togane": _2, "tohnosho": _2, "tomisato": _2, "urayasu": _2, "yachimata": _2, "yachiyo": _2, "yokaichiba": _2, "yokoshibahikari": _2, "yotsukaido": _2 }], "ehime": [1, { "ainan": _2, "honai": _2, "ikata": _2, "imabari": _2, "iyo": _2, "kamijima": _2, "kihoku": _2, "kumakogen": _2, "masaki": _2, "matsuno": _2, "matsuyama": _2, "namikata": _2, "niihama": _2, "ozu": _2, "saijo": _2, "seiyo": _2, "shikokuchuo": _2, "tobe": _2, "toon": _2, "uchiko": _2, "uwajima": _2, "yawatahama": _2 }], "fukui": [1, { "echizen": _2, "eiheiji": _2, "fukui": _2, "ikeda": _2, "katsuyama": _2, "mihama": _2, "minamiechizen": _2, "obama": _2, "ohi": _2, "ono": _2, "sabae": _2, "sakai": _2, "takahama": _2, "tsuruga": _2, "wakasa": _2 }], "fukuoka": [1, { "ashiya": _2, "buzen": _2, "chikugo": _2, "chikuho": _2, "chikujo": _2, "chikushino": _2, "chikuzen": _2, "chuo": _2, "dazaifu": _2, "fukuchi": _2, "hakata": _2, "higashi": _2, "hirokawa": _2, "hisayama": _2, "iizuka": _2, "inatsuki": _2, "kaho": _2, "kasuga": _2, "kasuya": _2, "kawara": _2, "keisen": _2, "koga": _2, "kurate": _2, "kurogi": _2, "kurume": _2, "minami": _2, "miyako": _2, "miyama": _2, "miyawaka": _2, "mizumaki": _2, "munakata": _2, "nakagawa": _2, "nakama": _2, "nishi": _2, "nogata": _2, "ogori": _2, "okagaki": _2, "okawa": _2, "oki": _2, "omuta": _2, "onga": _2, "onojo": _2, "oto": _2, "saigawa": _2, "sasaguri": _2, "shingu": _2, "shinyoshitomi": _2, "shonai": _2, "soeda": _2, "sue": _2, "tachiarai": _2, "tagawa": _2, "takata": _2, "toho": _2, "toyotsu": _2, "tsuiki": _2, "ukiha": _2, "umi": _2, "usui": _2, "yamada": _2, "yame": _2, "yanagawa": _2, "yukuhashi": _2 }], "fukushima": [1, { "aizubange": _2, "aizumisato": _2, "aizuwakamatsu": _2, "asakawa": _2, "bandai": _2, "date": _2, "fukushima": _2, "furudono": _2, "futaba": _2, "hanawa": _2, "higashi": _2, "hirata": _2, "hirono": _2, "iitate": _2, "inawashiro": _2, "ishikawa": _2, "iwaki": _2, "izumizaki": _2, "kagamiishi": _2, "kaneyama": _2, "kawamata": _2, "kitakata": _2, "kitashiobara": _2, "koori": _2, "koriyama": _2, "kunimi": _2, "miharu": _2, "mishima": _2, "namie": _2, "nango": _2, "nishiaizu": _2, "nishigo": _2, "okuma": _2, "omotego": _2, "ono": _2, "otama": _2, "samegawa": _2, "shimogo": _2, "shirakawa": _2, "showa": _2, "soma": _2, "sukagawa": _2, "taishin": _2, "tamakawa": _2, "tanagura": _2, "tenei": _2, "yabuki": _2, "yamato": _2, "yamatsuri": _2, "yanaizu": _2, "yugawa": _2 }], "gifu": [1, { "anpachi": _2, "ena": _2, "gifu": _2, "ginan": _2, "godo": _2, "gujo": _2, "hashima": _2, "hichiso": _2, "hida": _2, "higashishirakawa": _2, "ibigawa": _2, "ikeda": _2, "kakamigahara": _2, "kani": _2, "kasahara": _2, "kasamatsu": _2, "kawaue": _2, "kitagata": _2, "mino": _2, "minokamo": _2, "mitake": _2, "mizunami": _2, "motosu": _2, "nakatsugawa": _2, "ogaki": _2, "sakahogi": _2, "seki": _2, "sekigahara": _2, "shirakawa": _2, "tajimi": _2, "takayama": _2, "tarui": _2, "toki": _2, "tomika": _2, "wanouchi": _2, "yamagata": _2, "yaotsu": _2, "yoro": _2 }], "gunma": [1, { "annaka": _2, "chiyoda": _2, "fujioka": _2, "higashiagatsuma": _2, "isesaki": _2, "itakura": _2, "kanna": _2, "kanra": _2, "katashina": _2, "kawaba": _2, "kiryu": _2, "kusatsu": _2, "maebashi": _2, "meiwa": _2, "midori": _2, "minakami": _2, "naganohara": _2, "nakanojo": _2, "nanmoku": _2, "numata": _2, "oizumi": _2, "ora": _2, "ota": _2, "shibukawa": _2, "shimonita": _2, "shinto": _2, "showa": _2, "takasaki": _2, "takayama": _2, "tamamura": _2, "tatebayashi": _2, "tomioka": _2, "tsukiyono": _2, "tsumagoi": _2, "ueno": _2, "yoshioka": _2 }], "hiroshima": [1, { "asaminami": _2, "daiwa": _2, "etajima": _2, "fuchu": _2, "fukuyama": _2, "hatsukaichi": _2, "higashihiroshima": _2, "hongo": _2, "jinsekikogen": _2, "kaita": _2, "kui": _2, "kumano": _2, "kure": _2, "mihara": _2, "miyoshi": _2, "naka": _2, "onomichi": _2, "osakikamijima": _2, "otake": _2, "saka": _2, "sera": _2, "seranishi": _2, "shinichi": _2, "shobara": _2, "takehara": _2 }], "hokkaido": [1, { "abashiri": _2, "abira": _2, "aibetsu": _2, "akabira": _2, "akkeshi": _2, "asahikawa": _2, "ashibetsu": _2, "ashoro": _2, "assabu": _2, "atsuma": _2, "bibai": _2, "biei": _2, "bifuka": _2, "bihoro": _2, "biratori": _2, "chippubetsu": _2, "chitose": _2, "date": _2, "ebetsu": _2, "embetsu": _2, "eniwa": _2, "erimo": _2, "esan": _2, "esashi": _2, "fukagawa": _2, "fukushima": _2, "furano": _2, "furubira": _2, "haboro": _2, "hakodate": _2, "hamatonbetsu": _2, "hidaka": _2, "higashikagura": _2, "higashikawa": _2, "hiroo": _2, "hokuryu": _2, "hokuto": _2, "honbetsu": _2, "horokanai": _2, "horonobe": _2, "ikeda": _2, "imakane": _2, "ishikari": _2, "iwamizawa": _2, "iwanai": _2, "kamifurano": _2, "kamikawa": _2, "kamishihoro": _2, "kamisunagawa": _2, "kamoenai": _2, "kayabe": _2, "kembuchi": _2, "kikonai": _2, "kimobetsu": _2, "kitahiroshima": _2, "kitami": _2, "kiyosato": _2, "koshimizu": _2, "kunneppu": _2, "kuriyama": _2, "kuromatsunai": _2, "kushiro": _2, "kutchan": _2, "kyowa": _2, "mashike": _2, "matsumae": _2, "mikasa": _2, "minamifurano": _2, "mombetsu": _2, "moseushi": _2, "mukawa": _2, "muroran": _2, "naie": _2, "nakagawa": _2, "nakasatsunai": _2, "nakatombetsu": _2, "nanae": _2, "nanporo": _2, "nayoro": _2, "nemuro": _2, "niikappu": _2, "niki": _2, "nishiokoppe": _2, "noboribetsu": _2, "numata": _2, "obihiro": _2, "obira": _2, "oketo": _2, "okoppe": _2, "otaru": _2, "otobe": _2, "otofuke": _2, "otoineppu": _2, "oumu": _2, "ozora": _2, "pippu": _2, "rankoshi": _2, "rebun": _2, "rikubetsu": _2, "rishiri": _2, "rishirifuji": _2, "saroma": _2, "sarufutsu": _2, "shakotan": _2, "shari": _2, "shibecha": _2, "shibetsu": _2, "shikabe": _2, "shikaoi": _2, "shimamaki": _2, "shimizu": _2, "shimokawa": _2, "shinshinotsu": _2, "shintoku": _2, "shiranuka": _2, "shiraoi": _2, "shiriuchi": _2, "sobetsu": _2, "sunagawa": _2, "taiki": _2, "takasu": _2, "takikawa": _2, "takinoue": _2, "teshikaga": _2, "tobetsu": _2, "tohma": _2, "tomakomai": _2, "tomari": _2, "toya": _2, "toyako": _2, "toyotomi": _2, "toyoura": _2, "tsubetsu": _2, "tsukigata": _2, "urakawa": _2, "urausu": _2, "uryu": _2, "utashinai": _2, "wakkanai": _2, "wassamu": _2, "yakumo": _2, "yoichi": _2 }], "hyogo": [1, { "aioi": _2, "akashi": _2, "ako": _2, "amagasaki": _2, "aogaki": _2, "asago": _2, "ashiya": _2, "awaji": _2, "fukusaki": _2, "goshiki": _2, "harima": _2, "himeji": _2, "ichikawa": _2, "inagawa": _2, "itami": _2, "kakogawa": _2, "kamigori": _2, "kamikawa": _2, "kasai": _2, "kasuga": _2, "kawanishi": _2, "miki": _2, "minamiawaji": _2, "nishinomiya": _2, "nishiwaki": _2, "ono": _2, "sanda": _2, "sannan": _2, "sasayama": _2, "sayo": _2, "shingu": _2, "shinonsen": _2, "shiso": _2, "sumoto": _2, "taishi": _2, "taka": _2, "takarazuka": _2, "takasago": _2, "takino": _2, "tamba": _2, "tatsuno": _2, "toyooka": _2, "yabu": _2, "yashiro": _2, "yoka": _2, "yokawa": _2 }], "ibaraki": [1, { "ami": _2, "asahi": _2, "bando": _2, "chikusei": _2, "daigo": _2, "fujishiro": _2, "hitachi": _2, "hitachinaka": _2, "hitachiomiya": _2, "hitachiota": _2, "ibaraki": _2, "ina": _2, "inashiki": _2, "itako": _2, "iwama": _2, "joso": _2, "kamisu": _2, "kasama": _2, "kashima": _2, "kasumigaura": _2, "koga": _2, "miho": _2, "mito": _2, "moriya": _2, "naka": _2, "namegata": _2, "oarai": _2, "ogawa": _2, "omitama": _2, "ryugasaki": _2, "sakai": _2, "sakuragawa": _2, "shimodate": _2, "shimotsuma": _2, "shirosato": _2, "sowa": _2, "suifu": _2, "takahagi": _2, "tamatsukuri": _2, "tokai": _2, "tomobe": _2, "tone": _2, "toride": _2, "tsuchiura": _2, "tsukuba": _2, "uchihara": _2, "ushiku": _2, "yachiyo": _2, "yamagata": _2, "yawara": _2, "yuki": _2 }], "ishikawa": [1, { "anamizu": _2, "hakui": _2, "hakusan": _2, "kaga": _2, "kahoku": _2, "kanazawa": _2, "kawakita": _2, "komatsu": _2, "nakanoto": _2, "nanao": _2, "nomi": _2, "nonoichi": _2, "noto": _2, "shika": _2, "suzu": _2, "tsubata": _2, "tsurugi": _2, "uchinada": _2, "wajima": _2 }], "iwate": [1, { "fudai": _2, "fujisawa": _2, "hanamaki": _2, "hiraizumi": _2, "hirono": _2, "ichinohe": _2, "ichinoseki": _2, "iwaizumi": _2, "iwate": _2, "joboji": _2, "kamaishi": _2, "kanegasaki": _2, "karumai": _2, "kawai": _2, "kitakami": _2, "kuji": _2, "kunohe": _2, "kuzumaki": _2, "miyako": _2, "mizusawa": _2, "morioka": _2, "ninohe": _2, "noda": _2, "ofunato": _2, "oshu": _2, "otsuchi": _2, "rikuzentakata": _2, "shiwa": _2, "shizukuishi": _2, "sumita": _2, "tanohata": _2, "tono": _2, "yahaba": _2, "yamada": _2 }], "kagawa": [1, { "ayagawa": _2, "higashikagawa": _2, "kanonji": _2, "kotohira": _2, "manno": _2, "marugame": _2, "mitoyo": _2, "naoshima": _2, "sanuki": _2, "tadotsu": _2, "takamatsu": _2, "tonosho": _2, "uchinomi": _2, "utazu": _2, "zentsuji": _2 }], "kagoshima": [1, { "akune": _2, "amami": _2, "hioki": _2, "isa": _2, "isen": _2, "izumi": _2, "kagoshima": _2, "kanoya": _2, "kawanabe": _2, "kinko": _2, "kouyama": _2, "makurazaki": _2, "matsumoto": _2, "minamitane": _2, "nakatane": _2, "nishinoomote": _2, "satsumasendai": _2, "soo": _2, "tarumizu": _2, "yusui": _2 }], "kanagawa": [1, { "aikawa": _2, "atsugi": _2, "ayase": _2, "chigasaki": _2, "ebina": _2, "fujisawa": _2, "hadano": _2, "hakone": _2, "hiratsuka": _2, "isehara": _2, "kaisei": _2, "kamakura": _2, "kiyokawa": _2, "matsuda": _2, "minamiashigara": _2, "miura": _2, "nakai": _2, "ninomiya": _2, "odawara": _2, "oi": _2, "oiso": _2, "sagamihara": _2, "samukawa": _2, "tsukui": _2, "yamakita": _2, "yamato": _2, "yokosuka": _2, "yugawara": _2, "zama": _2, "zushi": _2 }], "kochi": [1, { "aki": _2, "geisei": _2, "hidaka": _2, "higashitsuno": _2, "ino": _2, "kagami": _2, "kami": _2, "kitagawa": _2, "kochi": _2, "mihara": _2, "motoyama": _2, "muroto": _2, "nahari": _2, "nakamura": _2, "nankoku": _2, "nishitosa": _2, "niyodogawa": _2, "ochi": _2, "okawa": _2, "otoyo": _2, "otsuki": _2, "sakawa": _2, "sukumo": _2, "susaki": _2, "tosa": _2, "tosashimizu": _2, "toyo": _2, "tsuno": _2, "umaji": _2, "yasuda": _2, "yusuhara": _2 }], "kumamoto": [1, { "amakusa": _2, "arao": _2, "aso": _2, "choyo": _2, "gyokuto": _2, "kamiamakusa": _2, "kikuchi": _2, "kumamoto": _2, "mashiki": _2, "mifune": _2, "minamata": _2, "minamioguni": _2, "nagasu": _2, "nishihara": _2, "oguni": _2, "ozu": _2, "sumoto": _2, "takamori": _2, "uki": _2, "uto": _2, "yamaga": _2, "yamato": _2, "yatsushiro": _2 }], "kyoto": [1, { "ayabe": _2, "fukuchiyama": _2, "higashiyama": _2, "ide": _2, "ine": _2, "joyo": _2, "kameoka": _2, "kamo": _2, "kita": _2, "kizu": _2, "kumiyama": _2, "kyotamba": _2, "kyotanabe": _2, "kyotango": _2, "maizuru": _2, "minami": _2, "minamiyamashiro": _2, "miyazu": _2, "muko": _2, "nagaokakyo": _2, "nakagyo": _2, "nantan": _2, "oyamazaki": _2, "sakyo": _2, "seika": _2, "tanabe": _2, "uji": _2, "ujitawara": _2, "wazuka": _2, "yamashina": _2, "yawata": _2 }], "mie": [1, { "asahi": _2, "inabe": _2, "ise": _2, "kameyama": _2, "kawagoe": _2, "kiho": _2, "kisosaki": _2, "kiwa": _2, "komono": _2, "kumano": _2, "kuwana": _2, "matsusaka": _2, "meiwa": _2, "mihama": _2, "minamiise": _2, "misugi": _2, "miyama": _2, "nabari": _2, "shima": _2, "suzuka": _2, "tado": _2, "taiki": _2, "taki": _2, "tamaki": _2, "toba": _2, "tsu": _2, "udono": _2, "ureshino": _2, "watarai": _2, "yokkaichi": _2 }], "miyagi": [1, { "furukawa": _2, "higashimatsushima": _2, "ishinomaki": _2, "iwanuma": _2, "kakuda": _2, "kami": _2, "kawasaki": _2, "marumori": _2, "matsushima": _2, "minamisanriku": _2, "misato": _2, "murata": _2, "natori": _2, "ogawara": _2, "ohira": _2, "onagawa": _2, "osaki": _2, "rifu": _2, "semine": _2, "shibata": _2, "shichikashuku": _2, "shikama": _2, "shiogama": _2, "shiroishi": _2, "tagajo": _2, "taiwa": _2, "tome": _2, "tomiya": _2, "wakuya": _2, "watari": _2, "yamamoto": _2, "zao": _2 }], "miyazaki": [1, { "aya": _2, "ebino": _2, "gokase": _2, "hyuga": _2, "kadogawa": _2, "kawaminami": _2, "kijo": _2, "kitagawa": _2, "kitakata": _2, "kitaura": _2, "kobayashi": _2, "kunitomi": _2, "kushima": _2, "mimata": _2, "miyakonojo": _2, "miyazaki": _2, "morotsuka": _2, "nichinan": _2, "nishimera": _2, "nobeoka": _2, "saito": _2, "shiiba": _2, "shintomi": _2, "takaharu": _2, "takanabe": _2, "takazaki": _2, "tsuno": _2 }], "nagano": [1, { "achi": _2, "agematsu": _2, "anan": _2, "aoki": _2, "asahi": _2, "azumino": _2, "chikuhoku": _2, "chikuma": _2, "chino": _2, "fujimi": _2, "hakuba": _2, "hara": _2, "hiraya": _2, "iida": _2, "iijima": _2, "iiyama": _2, "iizuna": _2, "ikeda": _2, "ikusaka": _2, "ina": _2, "karuizawa": _2, "kawakami": _2, "kiso": _2, "kisofukushima": _2, "kitaaiki": _2, "komagane": _2, "komoro": _2, "matsukawa": _2, "matsumoto": _2, "miasa": _2, "minamiaiki": _2, "minamimaki": _2, "minamiminowa": _2, "minowa": _2, "miyada": _2, "miyota": _2, "mochizuki": _2, "nagano": _2, "nagawa": _2, "nagiso": _2, "nakagawa": _2, "nakano": _2, "nozawaonsen": _2, "obuse": _2, "ogawa": _2, "okaya": _2, "omachi": _2, "omi": _2, "ookuwa": _2, "ooshika": _2, "otaki": _2, "otari": _2, "sakae": _2, "sakaki": _2, "saku": _2, "sakuho": _2, "shimosuwa": _2, "shinanomachi": _2, "shiojiri": _2, "suwa": _2, "suzaka": _2, "takagi": _2, "takamori": _2, "takayama": _2, "tateshina": _2, "tatsuno": _2, "togakushi": _2, "togura": _2, "tomi": _2, "ueda": _2, "wada": _2, "yamagata": _2, "yamanouchi": _2, "yasaka": _2, "yasuoka": _2 }], "nagasaki": [1, { "chijiwa": _2, "futsu": _2, "goto": _2, "hasami": _2, "hirado": _2, "iki": _2, "isahaya": _2, "kawatana": _2, "kuchinotsu": _2, "matsuura": _2, "nagasaki": _2, "obama": _2, "omura": _2, "oseto": _2, "saikai": _2, "sasebo": _2, "seihi": _2, "shimabara": _2, "shinkamigoto": _2, "togitsu": _2, "tsushima": _2, "unzen": _2 }], "nara": [1, { "ando": _2, "gose": _2, "heguri": _2, "higashiyoshino": _2, "ikaruga": _2, "ikoma": _2, "kamikitayama": _2, "kanmaki": _2, "kashiba": _2, "kashihara": _2, "katsuragi": _2, "kawai": _2, "kawakami": _2, "kawanishi": _2, "koryo": _2, "kurotaki": _2, "mitsue": _2, "miyake": _2, "nara": _2, "nosegawa": _2, "oji": _2, "ouda": _2, "oyodo": _2, "sakurai": _2, "sango": _2, "shimoichi": _2, "shimokitayama": _2, "shinjo": _2, "soni": _2, "takatori": _2, "tawaramoto": _2, "tenkawa": _2, "tenri": _2, "uda": _2, "yamatokoriyama": _2, "yamatotakada": _2, "yamazoe": _2, "yoshino": _2 }], "niigata": [1, { "aga": _2, "agano": _2, "gosen": _2, "itoigawa": _2, "izumozaki": _2, "joetsu": _2, "kamo": _2, "kariwa": _2, "kashiwazaki": _2, "minamiuonuma": _2, "mitsuke": _2, "muika": _2, "murakami": _2, "myoko": _2, "nagaoka": _2, "niigata": _2, "ojiya": _2, "omi": _2, "sado": _2, "sanjo": _2, "seiro": _2, "seirou": _2, "sekikawa": _2, "shibata": _2, "tagami": _2, "tainai": _2, "tochio": _2, "tokamachi": _2, "tsubame": _2, "tsunan": _2, "uonuma": _2, "yahiko": _2, "yoita": _2, "yuzawa": _2 }], "oita": [1, { "beppu": _2, "bungoono": _2, "bungotakada": _2, "hasama": _2, "hiji": _2, "himeshima": _2, "hita": _2, "kamitsue": _2, "kokonoe": _2, "kuju": _2, "kunisaki": _2, "kusu": _2, "oita": _2, "saiki": _2, "taketa": _2, "tsukumi": _2, "usa": _2, "usuki": _2, "yufu": _2 }], "okayama": [1, { "akaiwa": _2, "asakuchi": _2, "bizen": _2, "hayashima": _2, "ibara": _2, "kagamino": _2, "kasaoka": _2, "kibichuo": _2, "kumenan": _2, "kurashiki": _2, "maniwa": _2, "misaki": _2, "nagi": _2, "niimi": _2, "nishiawakura": _2, "okayama": _2, "satosho": _2, "setouchi": _2, "shinjo": _2, "shoo": _2, "soja": _2, "takahashi": _2, "tamano": _2, "tsuyama": _2, "wake": _2, "yakage": _2 }], "okinawa": [1, { "aguni": _2, "ginowan": _2, "ginoza": _2, "gushikami": _2, "haebaru": _2, "higashi": _2, "hirara": _2, "iheya": _2, "ishigaki": _2, "ishikawa": _2, "itoman": _2, "izena": _2, "kadena": _2, "kin": _2, "kitadaito": _2, "kitanakagusuku": _2, "kumejima": _2, "kunigami": _2, "minamidaito": _2, "motobu": _2, "nago": _2, "naha": _2, "nakagusuku": _2, "nakijin": _2, "nanjo": _2, "nishihara": _2, "ogimi": _2, "okinawa": _2, "onna": _2, "shimoji": _2, "taketomi": _2, "tarama": _2, "tokashiki": _2, "tomigusuku": _2, "tonaki": _2, "urasoe": _2, "uruma": _2, "yaese": _2, "yomitan": _2, "yonabaru": _2, "yonaguni": _2, "zamami": _2 }], "osaka": [1, { "abeno": _2, "chihayaakasaka": _2, "chuo": _2, "daito": _2, "fujiidera": _2, "habikino": _2, "hannan": _2, "higashiosaka": _2, "higashisumiyoshi": _2, "higashiyodogawa": _2, "hirakata": _2, "ibaraki": _2, "ikeda": _2, "izumi": _2, "izumiotsu": _2, "izumisano": _2, "kadoma": _2, "kaizuka": _2, "kanan": _2, "kashiwara": _2, "katano": _2, "kawachinagano": _2, "kishiwada": _2, "kita": _2, "kumatori": _2, "matsubara": _2, "minato": _2, "minoh": _2, "misaki": _2, "moriguchi": _2, "neyagawa": _2, "nishi": _2, "nose": _2, "osakasayama": _2, "sakai": _2, "sayama": _2, "sennan": _2, "settsu": _2, "shijonawate": _2, "shimamoto": _2, "suita": _2, "tadaoka": _2, "taishi": _2, "tajiri": _2, "takaishi": _2, "takatsuki": _2, "tondabayashi": _2, "toyonaka": _2, "toyono": _2, "yao": _2 }], "saga": [1, { "ariake": _2, "arita": _2, "fukudomi": _2, "genkai": _2, "hamatama": _2, "hizen": _2, "imari": _2, "kamimine": _2, "kanzaki": _2, "karatsu": _2, "kashima": _2, "kitagata": _2, "kitahata": _2, "kiyama": _2, "kouhoku": _2, "kyuragi": _2, "nishiarita": _2, "ogi": _2, "omachi": _2, "ouchi": _2, "saga": _2, "shiroishi": _2, "taku": _2, "tara": _2, "tosu": _2, "yoshinogari": _2 }], "saitama": [1, { "arakawa": _2, "asaka": _2, "chichibu": _2, "fujimi": _2, "fujimino": _2, "fukaya": _2, "hanno": _2, "hanyu": _2, "hasuda": _2, "hatogaya": _2, "hatoyama": _2, "hidaka": _2, "higashichichibu": _2, "higashimatsuyama": _2, "honjo": _2, "ina": _2, "iruma": _2, "iwatsuki": _2, "kamiizumi": _2, "kamikawa": _2, "kamisato": _2, "kasukabe": _2, "kawagoe": _2, "kawaguchi": _2, "kawajima": _2, "kazo": _2, "kitamoto": _2, "koshigaya": _2, "kounosu": _2, "kuki": _2, "kumagaya": _2, "matsubushi": _2, "minano": _2, "misato": _2, "miyashiro": _2, "miyoshi": _2, "moroyama": _2, "nagatoro": _2, "namegawa": _2, "niiza": _2, "ogano": _2, "ogawa": _2, "ogose": _2, "okegawa": _2, "omiya": _2, "otaki": _2, "ranzan": _2, "ryokami": _2, "saitama": _2, "sakado": _2, "satte": _2, "sayama": _2, "shiki": _2, "shiraoka": _2, "soka": _2, "sugito": _2, "toda": _2, "tokigawa": _2, "tokorozawa": _2, "tsurugashima": _2, "urawa": _2, "warabi": _2, "yashio": _2, "yokoze": _2, "yono": _2, "yorii": _2, "yoshida": _2, "yoshikawa": _2, "yoshimi": _2 }], "shiga": [1, { "aisho": _2, "gamo": _2, "higashiomi": _2, "hikone": _2, "koka": _2, "konan": _2, "kosei": _2, "koto": _2, "kusatsu": _2, "maibara": _2, "moriyama": _2, "nagahama": _2, "nishiazai": _2, "notogawa": _2, "omihachiman": _2, "otsu": _2, "ritto": _2, "ryuoh": _2, "takashima": _2, "takatsuki": _2, "torahime": _2, "toyosato": _2, "yasu": _2 }], "shimane": [1, { "akagi": _2, "ama": _2, "gotsu": _2, "hamada": _2, "higashiizumo": _2, "hikawa": _2, "hikimi": _2, "izumo": _2, "kakinoki": _2, "masuda": _2, "matsue": _2, "misato": _2, "nishinoshima": _2, "ohda": _2, "okinoshima": _2, "okuizumo": _2, "shimane": _2, "tamayu": _2, "tsuwano": _2, "unnan": _2, "yakumo": _2, "yasugi": _2, "yatsuka": _2 }], "shizuoka": [1, { "arai": _2, "atami": _2, "fuji": _2, "fujieda": _2, "fujikawa": _2, "fujinomiya": _2, "fukuroi": _2, "gotemba": _2, "haibara": _2, "hamamatsu": _2, "higashiizu": _2, "ito": _2, "iwata": _2, "izu": _2, "izunokuni": _2, "kakegawa": _2, "kannami": _2, "kawanehon": _2, "kawazu": _2, "kikugawa": _2, "kosai": _2, "makinohara": _2, "matsuzaki": _2, "minamiizu": _2, "mishima": _2, "morimachi": _2, "nishiizu": _2, "numazu": _2, "omaezaki": _2, "shimada": _2, "shimizu": _2, "shimoda": _2, "shizuoka": _2, "susono": _2, "yaizu": _2, "yoshida": _2 }], "tochigi": [1, { "ashikaga": _2, "bato": _2, "haga": _2, "ichikai": _2, "iwafune": _2, "kaminokawa": _2, "kanuma": _2, "karasuyama": _2, "kuroiso": _2, "mashiko": _2, "mibu": _2, "moka": _2, "motegi": _2, "nasu": _2, "nasushiobara": _2, "nikko": _2, "nishikata": _2, "nogi": _2, "ohira": _2, "ohtawara": _2, "oyama": _2, "sakura": _2, "sano": _2, "shimotsuke": _2, "shioya": _2, "takanezawa": _2, "tochigi": _2, "tsuga": _2, "ujiie": _2, "utsunomiya": _2, "yaita": _2 }], "tokushima": [1, { "aizumi": _2, "anan": _2, "ichiba": _2, "itano": _2, "kainan": _2, "komatsushima": _2, "matsushige": _2, "mima": _2, "minami": _2, "miyoshi": _2, "mugi": _2, "nakagawa": _2, "naruto": _2, "sanagochi": _2, "shishikui": _2, "tokushima": _2, "wajiki": _2 }], "tokyo": [1, { "adachi": _2, "akiruno": _2, "akishima": _2, "aogashima": _2, "arakawa": _2, "bunkyo": _2, "chiyoda": _2, "chofu": _2, "chuo": _2, "edogawa": _2, "fuchu": _2, "fussa": _2, "hachijo": _2, "hachioji": _2, "hamura": _2, "higashikurume": _2, "higashimurayama": _2, "higashiyamato": _2, "hino": _2, "hinode": _2, "hinohara": _2, "inagi": _2, "itabashi": _2, "katsushika": _2, "kita": _2, "kiyose": _2, "kodaira": _2, "koganei": _2, "kokubunji": _2, "komae": _2, "koto": _2, "kouzushima": _2, "kunitachi": _2, "machida": _2, "meguro": _2, "minato": _2, "mitaka": _2, "mizuho": _2, "musashimurayama": _2, "musashino": _2, "nakano": _2, "nerima": _2, "ogasawara": _2, "okutama": _2, "ome": _2, "oshima": _2, "ota": _2, "setagaya": _2, "shibuya": _2, "shinagawa": _2, "shinjuku": _2, "suginami": _2, "sumida": _2, "tachikawa": _2, "taito": _2, "tama": _2, "toshima": _2 }], "tottori": [1, { "chizu": _2, "hino": _2, "kawahara": _2, "koge": _2, "kotoura": _2, "misasa": _2, "nanbu": _2, "nichinan": _2, "sakaiminato": _2, "tottori": _2, "wakasa": _2, "yazu": _2, "yonago": _2 }], "toyama": [1, { "asahi": _2, "fuchu": _2, "fukumitsu": _2, "funahashi": _2, "himi": _2, "imizu": _2, "inami": _2, "johana": _2, "kamiichi": _2, "kurobe": _2, "nakaniikawa": _2, "namerikawa": _2, "nanto": _2, "nyuzen": _2, "oyabe": _2, "taira": _2, "takaoka": _2, "tateyama": _2, "toga": _2, "tonami": _2, "toyama": _2, "unazuki": _2, "uozu": _2, "yamada": _2 }], "wakayama": [1, { "arida": _2, "aridagawa": _2, "gobo": _2, "hashimoto": _2, "hidaka": _2, "hirogawa": _2, "inami": _2, "iwade": _2, "kainan": _2, "kamitonda": _2, "katsuragi": _2, "kimino": _2, "kinokawa": _2, "kitayama": _2, "koya": _2, "koza": _2, "kozagawa": _2, "kudoyama": _2, "kushimoto": _2, "mihama": _2, "misato": _2, "nachikatsuura": _2, "shingu": _2, "shirahama": _2, "taiji": _2, "tanabe": _2, "wakayama": _2, "yuasa": _2, "yura": _2 }], "yamagata": [1, { "asahi": _2, "funagata": _2, "higashine": _2, "iide": _2, "kahoku": _2, "kaminoyama": _2, "kaneyama": _2, "kawanishi": _2, "mamurogawa": _2, "mikawa": _2, "murayama": _2, "nagai": _2, "nakayama": _2, "nanyo": _2, "nishikawa": _2, "obanazawa": _2, "oe": _2, "oguni": _2, "ohkura": _2, "oishida": _2, "sagae": _2, "sakata": _2, "sakegawa": _2, "shinjo": _2, "shirataka": _2, "shonai": _2, "takahata": _2, "tendo": _2, "tozawa": _2, "tsuruoka": _2, "yamagata": _2, "yamanobe": _2, "yonezawa": _2, "yuza": _2 }], "yamaguchi": [1, { "abu": _2, "hagi": _2, "hikari": _2, "hofu": _2, "iwakuni": _2, "kudamatsu": _2, "mitou": _2, "nagato": _2, "oshima": _2, "shimonoseki": _2, "shunan": _2, "tabuse": _2, "tokuyama": _2, "toyota": _2, "ube": _2, "yuu": _2 }], "yamanashi": [1, { "chuo": _2, "doshi": _2, "fuefuki": _2, "fujikawa": _2, "fujikawaguchiko": _2, "fujiyoshida": _2, "hayakawa": _2, "hokuto": _2, "ichikawamisato": _2, "kai": _2, "kofu": _2, "koshu": _2, "kosuge": _2, "minami-alps": _2, "minobu": _2, "nakamichi": _2, "nanbu": _2, "narusawa": _2, "nirasaki": _2, "nishikatsura": _2, "oshino": _2, "otsuki": _2, "showa": _2, "tabayama": _2, "tsuru": _2, "uenohara": _2, "yamanakako": _2, "yamanashi": _2 }], "xn--ehqz56n": _2, "\u4E09\u91CD": _2, "xn--1lqs03n": _2, "\u4EAC\u90FD": _2, "xn--qqqt11m": _2, "\u4F50\u8CC0": _2, "xn--f6qx53a": _2, "\u5175\u5EAB": _2, "xn--djrs72d6uy": _2, "\u5317\u6D77\u9053": _2, "xn--mkru45i": _2, "\u5343\u8449": _2, "xn--0trq7p7nn": _2, "\u548C\u6B4C\u5C71": _2, "xn--5js045d": _2, "\u57FC\u7389": _2, "xn--kbrq7o": _2, "\u5927\u5206": _2, "xn--pssu33l": _2, "\u5927\u962A": _2, "xn--ntsq17g": _2, "\u5948\u826F": _2, "xn--uisz3g": _2, "\u5BAE\u57CE": _2, "xn--6btw5a": _2, "\u5BAE\u5D0E": _2, "xn--1ctwo": _2, "\u5BCC\u5C71": _2, "xn--6orx2r": _2, "\u5C71\u53E3": _2, "xn--rht61e": _2, "\u5C71\u5F62": _2, "xn--rht27z": _2, "\u5C71\u68A8": _2, "xn--nit225k": _2, "\u5C90\u961C": _2, "xn--rht3d": _2, "\u5CA1\u5C71": _2, "xn--djty4k": _2, "\u5CA9\u624B": _2, "xn--klty5x": _2, "\u5CF6\u6839": _2, "xn--kltx9a": _2, "\u5E83\u5CF6": _2, "xn--kltp7d": _2, "\u5FB3\u5CF6": _2, "xn--c3s14m": _2, "\u611B\u5A9B": _2, "xn--vgu402c": _2, "\u611B\u77E5": _2, "xn--efvn9s": _2, "\u65B0\u6F5F": _2, "xn--1lqs71d": _2, "\u6771\u4EAC": _2, "xn--4pvxs": _2, "\u6803\u6728": _2, "xn--uuwu58a": _2, "\u6C96\u7E04": _2, "xn--zbx025d": _2, "\u6ECB\u8CC0": _2, "xn--8pvr4u": _2, "\u718A\u672C": _2, "xn--5rtp49c": _2, "\u77F3\u5DDD": _2, "xn--ntso0iqx3a": _2, "\u795E\u5948\u5DDD": _2, "xn--elqq16h": _2, "\u798F\u4E95": _2, "xn--4it168d": _2, "\u798F\u5CA1": _2, "xn--klt787d": _2, "\u798F\u5CF6": _2, "xn--rny31h": _2, "\u79CB\u7530": _2, "xn--7t0a264c": _2, "\u7FA4\u99AC": _2, "xn--uist22h": _2, "\u8328\u57CE": _2, "xn--8ltr62k": _2, "\u9577\u5D0E": _2, "xn--2m4a15e": _2, "\u9577\u91CE": _2, "xn--32vp30h": _2, "\u9752\u68EE": _2, "xn--4it797k": _2, "\u9759\u5CA1": _2, "xn--5rtq34k": _2, "\u9999\u5DDD": _2, "xn--k7yn95e": _2, "\u9AD8\u77E5": _2, "xn--tor131o": _2, "\u9CE5\u53D6": _2, "xn--d5qv7z876c": _2, "\u9E7F\u5150\u5CF6": _2, "kawasaki": _18, "kitakyushu": _18, "kobe": _18, "nagoya": _18, "sapporo": _18, "sendai": _18, "yokohama": _18, "buyshop": _3, "fashionstore": _3, "handcrafted": _3, "kawaiishop": _3, "supersale": _3, "theshop": _3, "0am": _3, "0g0": _3, "0j0": _3, "0t0": _3, "mydns": _3, "pgw": _3, "wjg": _3, "usercontent": _3, "angry": _3, "babyblue": _3, "babymilk": _3, "backdrop": _3, "bambina": _3, "bitter": _3, "blush": _3, "boo": _3, "boy": _3, "boyfriend": _3, "but": _3, "candypop": _3, "capoo": _3, "catfood": _3, "cheap": _3, "chicappa": _3, "chillout": _3, "chips": _3, "chowder": _3, "chu": _3, "ciao": _3, "cocotte": _3, "coolblog": _3, "cranky": _3, "cutegirl": _3, "daa": _3, "deca": _3, "deci": _3, "digick": _3, "egoism": _3, "fakefur": _3, "fem": _3, "flier": _3, "floppy": _3, "fool": _3, "frenchkiss": _3, "girlfriend": _3, "girly": _3, "gloomy": _3, "gonna": _3, "greater": _3, "hacca": _3, "heavy": _3, "her": _3, "hiho": _3, "hippy": _3, "holy": _3, "hungry": _3, "icurus": _3, "itigo": _3, "jellybean": _3, "kikirara": _3, "kill": _3, "kilo": _3, "kuron": _3, "littlestar": _3, "lolipopmc": _3, "lolitapunk": _3, "lomo": _3, "lovepop": _3, "lovesick": _3, "main": _3, "mods": _3, "mond": _3, "mongolian": _3, "moo": _3, "namaste": _3, "nikita": _3, "nobushi": _3, "noor": _3, "oops": _3, "parallel": _3, "parasite": _3, "pecori": _3, "peewee": _3, "penne": _3, "pepper": _3, "perma": _3, "pigboat": _3, "pinoko": _3, "punyu": _3, "pupu": _3, "pussycat": _3, "pya": _3, "raindrop": _3, "readymade": _3, "sadist": _3, "schoolbus": _3, "secret": _3, "staba": _3, "stripper": _3, "sub": _3, "sunnyday": _3, "thick": _3, "tonkotsu": _3, "under": _3, "upper": _3, "velvet": _3, "verse": _3, "versus": _3, "vivian": _3, "watson": _3, "weblike": _3, "whitesnow": _3, "zombie": _3, "hateblo": _3, "hatenablog": _3, "hatenadiary": _3, "2-d": _3, "bona": _3, "crap": _3, "daynight": _3, "eek": _3, "flop": _3, "halfmoon": _3, "jeez": _3, "matrix": _3, "mimoza": _3, "netgamers": _3, "nyanta": _3, "o0o0": _3, "rdy": _3, "rgr": _3, "rulez": _3, "sakurastorage": [0, { "isk01": _57, "isk02": _57 }], "saloon": _3, "sblo": _3, "skr": _3, "tank": _3, "uh-oh": _3, "undo": _3, "webaccel": [0, { "rs": _3, "user": _3 }], "websozai": _3, "xii": _3 }], "ke": [1, { "ac": _2, "co": _2, "go": _2, "info": _2, "me": _2, "mobi": _2, "ne": _2, "or": _2, "sc": _2 }], "kg": [1, { "com": _2, "edu": _2, "gov": _2, "mil": _2, "net": _2, "org": _2, "us": _3, "xx": _3 }], "kh": _18, "ki": _58, "km": [1, { "ass": _2, "com": _2, "edu": _2, "gov": _2, "mil": _2, "nom": _2, "org": _2, "prd": _2, "tm": _2, "asso": _2, "coop": _2, "gouv": _2, "medecin": _2, "notaires": _2, "pharmaciens": _2, "presse": _2, "veterinaire": _2 }], "kn": [1, { "edu": _2, "gov": _2, "net": _2, "org": _2 }], "kp": [1, { "com": _2, "edu": _2, "gov": _2, "org": _2, "rep": _2, "tra": _2 }], "kr": [1, { "ac": _2, "ai": _2, "co": _2, "es": _2, "go": _2, "hs": _2, "io": _2, "it": _2, "kg": _2, "me": _2, "mil": _2, "ms": _2, "ne": _2, "or": _2, "pe": _2, "re": _2, "sc": _2, "busan": _2, "chungbuk": _2, "chungnam": _2, "daegu": _2, "daejeon": _2, "gangwon": _2, "gwangju": _2, "gyeongbuk": _2, "gyeonggi": _2, "gyeongnam": _2, "incheon": _2, "jeju": _2, "jeonbuk": _2, "jeonnam": _2, "seoul": _2, "ulsan": _2, "c01": _3, "eliv-cdn": _3, "eliv-dns": _3, "mmv": _3, "vki": _3 }], "kw": [1, { "com": _2, "edu": _2, "emb": _2, "gov": _2, "ind": _2, "net": _2, "org": _2 }], "ky": _45, "kz": [1, { "com": _2, "edu": _2, "gov": _2, "mil": _2, "net": _2, "org": _2, "jcloud": _3 }], "la": [1, { "com": _2, "edu": _2, "gov": _2, "info": _2, "int": _2, "net": _2, "org": _2, "per": _2, "bnr": _3 }], "lb": _4, "lc": [1, { "co": _2, "com": _2, "edu": _2, "gov": _2, "net": _2, "org": _2, "oy": _3 }], "li": _2, "lk": [1, { "ac": _2, "assn": _2, "com": _2, "edu": _2, "gov": _2, "grp": _2, "hotel": _2, "int": _2, "ltd": _2, "net": _2, "ngo": _2, "org": _2, "sch": _2, "soc": _2, "web": _2 }], "lr": _4, "ls": [1, { "ac": _2, "biz": _2, "co": _2, "edu": _2, "gov": _2, "info": _2, "net": _2, "org": _2, "sc": _2 }], "lt": _10, "lu": [1, { "123website": _3 }], "lv": [1, { "asn": _2, "com": _2, "conf": _2, "edu": _2, "gov": _2, "id": _2, "mil": _2, "net": _2, "org": _2 }], "ly": [1, { "com": _2, "edu": _2, "gov": _2, "id": _2, "med": _2, "net": _2, "org": _2, "plc": _2, "sch": _2 }], "ma": [1, { "ac": _2, "co": _2, "gov": _2, "net": _2, "org": _2, "press": _2 }], "mc": [1, { "asso": _2, "tm": _2 }], "md": [1, { "ir": _3 }], "me": [1, { "ac": _2, "co": _2, "edu": _2, "gov": _2, "its": _2, "net": _2, "org": _2, "priv": _2, "c66": _3, "craft": _3, "edgestack": _3, "filegear": _3, "filegear-sg": _3, "lohmus": _3, "barsy": _3, "mcdir": _3, "brasilia": _3, "ddns": _3, "dnsfor": _3, "hopto": _3, "loginto": _3, "noip": _3, "webhop": _3, "soundcast": _3, "tcp4": _3, "vp4": _3, "diskstation": _3, "dscloud": _3, "i234": _3, "myds": _3, "synology": _3, "transip": _44, "nohost": _3 }], "mg": [1, { "co": _2, "com": _2, "edu": _2, "gov": _2, "mil": _2, "nom": _2, "org": _2, "prd": _2 }], "mh": _2, "mil": _2, "mk": [1, { "com": _2, "edu": _2, "gov": _2, "inf": _2, "name": _2, "net": _2, "org": _2 }], "ml": [1, { "ac": _2, "art": _2, "asso": _2, "com": _2, "edu": _2, "gouv": _2, "gov": _2, "info": _2, "inst": _2, "net": _2, "org": _2, "pr": _2, "presse": _2 }], "mm": _18, "mn": [1, { "edu": _2, "gov": _2, "org": _2, "nyc": _3 }], "mo": _4, "mobi": [1, { "barsy": _3, "dscloud": _3 }], "mp": [1, { "ju": _3 }], "mq": _2, "mr": _10, "ms": [1, { "com": _2, "edu": _2, "gov": _2, "net": _2, "org": _2, "minisite": _3 }], "mt": _45, "mu": [1, { "ac": _2, "co": _2, "com": _2, "gov": _2, "net": _2, "or": _2, "org": _2 }], "museum": _2, "mv": [1, { "aero": _2, "biz": _2, "com": _2, "coop": _2, "edu": _2, "gov": _2, "info": _2, "int": _2, "mil": _2, "museum": _2, "name": _2, "net": _2, "org": _2, "pro": _2 }], "mw": [1, { "ac": _2, "biz": _2, "co": _2, "com": _2, "coop": _2, "edu": _2, "gov": _2, "int": _2, "net": _2, "org": _2 }], "mx": [1, { "com": _2, "edu": _2, "gob": _2, "net": _2, "org": _2 }], "my": [1, { "biz": _2, "com": _2, "edu": _2, "gov": _2, "mil": _2, "name": _2, "net": _2, "org": _2 }], "mz": [1, { "ac": _2, "adv": _2, "co": _2, "edu": _2, "gov": _2, "mil": _2, "net": _2, "org": _2 }], "na": [1, { "alt": _2, "co": _2, "com": _2, "gov": _2, "net": _2, "org": _2 }], "name": [1, { "her": _61, "his": _61 }], "nc": [1, { "asso": _2, "nom": _2 }], "ne": _2, "net": [1, { "adobeaemcloud": _3, "adobeio-static": _3, "adobeioruntime": _3, "akadns": _3, "akamai": _3, "akamai-staging": _3, "akamaiedge": _3, "akamaiedge-staging": _3, "akamaihd": _3, "akamaihd-staging": _3, "akamaiorigin": _3, "akamaiorigin-staging": _3, "akamaized": _3, "akamaized-staging": _3, "edgekey": _3, "edgekey-staging": _3, "edgesuite": _3, "edgesuite-staging": _3, "alwaysdata": _3, "myamaze": _3, "cloudfront": _3, "appudo": _3, "atlassian-dev": [0, { "prod": _53 }], "myfritz": _3, "onavstack": _3, "shopselect": _3, "blackbaudcdn": _3, "boomla": _3, "bplaced": _3, "square7": _3, "cdn77": [0, { "r": _3 }], "cdn77-ssl": _3, "gb": _3, "hu": _3, "jp": _3, "se": _3, "uk": _3, "clickrising": _3, "ddns-ip": _3, "dns-cloud": _3, "dns-dynamic": _3, "cloudaccess": _3, "cloudflare": [2, { "cdn": _3 }], "cloudflareanycast": _53, "cloudflarecn": _53, "cloudflareglobal": _53, "ctfcloud": _3, "feste-ip": _3, "knx-server": _3, "static-access": _3, "cryptonomic": _6, "dattolocal": _3, "mydatto": _3, "debian": _3, "definima": _3, "deno": _3, "icp": _6, "at-band-camp": _3, "blogdns": _3, "broke-it": _3, "buyshouses": _3, "dnsalias": _3, "dnsdojo": _3, "does-it": _3, "dontexist": _3, "dynalias": _3, "dynathome": _3, "endofinternet": _3, "from-az": _3, "from-co": _3, "from-la": _3, "from-ny": _3, "gets-it": _3, "ham-radio-op": _3, "homeftp": _3, "homeip": _3, "homelinux": _3, "homeunix": _3, "in-the-band": _3, "is-a-chef": _3, "is-a-geek": _3, "isa-geek": _3, "kicks-ass": _3, "office-on-the": _3, "podzone": _3, "scrapper-site": _3, "selfip": _3, "sells-it": _3, "servebbs": _3, "serveftp": _3, "thruhere": _3, "webhop": _3, "casacam": _3, "dynu": _3, "dynv6": _3, "twmail": _3, "ru": _3, "channelsdvr": [2, { "u": _3 }], "fastly": [0, { "freetls": _3, "map": _3, "prod": [0, { "a": _3, "global": _3 }], "ssl": [0, { "a": _3, "b": _3, "global": _3 }] }], "fastlylb": [2, { "map": _3 }], "edgeapp": _3, "keyword-on": _3, "live-on": _3, "server-on": _3, "cdn-edges": _3, "heteml": _3, "cloudfunctions": _3, "grafana-dev": _3, "iobb": _3, "moonscale": _3, "in-dsl": _3, "in-vpn": _3, "oninferno": _3, "botdash": _3, "apps-1and1": _3, "ipifony": _3, "cloudjiffy": [2, { "fra1-de": _3, "west1-us": _3 }], "elastx": [0, { "jls-sto1": _3, "jls-sto2": _3, "jls-sto3": _3 }], "massivegrid": [0, { "paas": [0, { "fr-1": _3, "lon-1": _3, "lon-2": _3, "ny-1": _3, "ny-2": _3, "sg-1": _3 }] }], "saveincloud": [0, { "jelastic": _3, "nordeste-idc": _3 }], "scaleforce": _46, "kinghost": _3, "uni5": _3, "krellian": _3, "ggff": _3, "localcert": _3, "localto": _6, "barsy": _3, "luyani": _3, "memset": _3, "azure-api": _3, "azure-mobile": _3, "azureedge": _3, "azurefd": _3, "azurestaticapps": [2, { "1": _3, "2": _3, "3": _3, "4": _3, "5": _3, "6": _3, "7": _3, "centralus": _3, "eastasia": _3, "eastus2": _3, "westeurope": _3, "westus2": _3 }], "azurewebsites": _3, "cloudapp": _3, "trafficmanager": _3, "windows": [0, { "core": [0, { "blob": _3 }], "servicebus": _3 }], "mynetname": [0, { "sn": _3 }], "routingthecloud": _3, "bounceme": _3, "ddns": _3, "eating-organic": _3, "mydissent": _3, "myeffect": _3, "mymediapc": _3, "mypsx": _3, "mysecuritycamera": _3, "nhlfan": _3, "no-ip": _3, "pgafan": _3, "privatizehealthinsurance": _3, "redirectme": _3, "serveblog": _3, "serveminecraft": _3, "sytes": _3, "dnsup": _3, "hicam": _3, "now-dns": _3, "ownip": _3, "vpndns": _3, "cloudycluster": _3, "ovh": [0, { "hosting": _6, "webpaas": _6 }], "rackmaze": _3, "myradweb": _3, "in": _3, "subsc-pay": _3, "squares": _3, "schokokeks": _3, "firewall-gateway": _3, "seidat": _3, "senseering": _3, "siteleaf": _3, "mafelo": _3, "myspreadshop": _3, "vps-host": [2, { "jelastic": [0, { "atl": _3, "njs": _3, "ric": _3 }] }], "srcf": [0, { "soc": _3, "user": _3 }], "supabase": _3, "dsmynas": _3, "familyds": _3, "ts": [2, { "c": _6 }], "torproject": [2, { "pages": _3 }], "vusercontent": _3, "reserve-online": _3, "community-pro": _3, "meinforum": _3, "yandexcloud": [2, { "storage": _3, "website": _3 }], "za": _3, "zabc": _3 }], "nf": [1, { "arts": _2, "com": _2, "firm": _2, "info": _2, "net": _2, "other": _2, "per": _2, "rec": _2, "store": _2, "web": _2 }], "ng": [1, { "com": _2, "edu": _2, "gov": _2, "i": _2, "mil": _2, "mobi": _2, "name": _2, "net": _2, "org": _2, "sch": _2, "biz": [2, { "co": _3, "dl": _3, "go": _3, "lg": _3, "on": _3 }], "col": _3, "firm": _3, "gen": _3, "ltd": _3, "ngo": _3, "plc": _3 }], "ni": [1, { "ac": _2, "biz": _2, "co": _2, "com": _2, "edu": _2, "gob": _2, "in": _2, "info": _2, "int": _2, "mil": _2, "net": _2, "nom": _2, "org": _2, "web": _2 }], "nl": [1, { "co": _3, "hosting-cluster": _3, "gov": _3, "khplay": _3, "123website": _3, "myspreadshop": _3, "transurl": _6, "cistron": _3, "demon": _3 }], "no": [1, { "fhs": _2, "folkebibl": _2, "fylkesbibl": _2, "idrett": _2, "museum": _2, "priv": _2, "vgs": _2, "dep": _2, "herad": _2, "kommune": _2, "mil": _2, "stat": _2, "aa": _62, "ah": _62, "bu": _62, "fm": _62, "hl": _62, "hm": _62, "jan-mayen": _62, "mr": _62, "nl": _62, "nt": _62, "of": _62, "ol": _62, "oslo": _62, "rl": _62, "sf": _62, "st": _62, "svalbard": _62, "tm": _62, "tr": _62, "va": _62, "vf": _62, "akrehamn": _2, "xn--krehamn-dxa": _2, "\xE5krehamn": _2, "algard": _2, "xn--lgrd-poac": _2, "\xE5lg\xE5rd": _2, "arna": _2, "bronnoysund": _2, "xn--brnnysund-m8ac": _2, "br\xF8nn\xF8ysund": _2, "brumunddal": _2, "bryne": _2, "drobak": _2, "xn--drbak-wua": _2, "dr\xF8bak": _2, "egersund": _2, "fetsund": _2, "floro": _2, "xn--flor-jra": _2, "flor\xF8": _2, "fredrikstad": _2, "hokksund": _2, "honefoss": _2, "xn--hnefoss-q1a": _2, "h\xF8nefoss": _2, "jessheim": _2, "jorpeland": _2, "xn--jrpeland-54a": _2, "j\xF8rpeland": _2, "kirkenes": _2, "kopervik": _2, "krokstadelva": _2, "langevag": _2, "xn--langevg-jxa": _2, "langev\xE5g": _2, "leirvik": _2, "mjondalen": _2, "xn--mjndalen-64a": _2, "mj\xF8ndalen": _2, "mo-i-rana": _2, "mosjoen": _2, "xn--mosjen-eya": _2, "mosj\xF8en": _2, "nesoddtangen": _2, "orkanger": _2, "osoyro": _2, "xn--osyro-wua": _2, "os\xF8yro": _2, "raholt": _2, "xn--rholt-mra": _2, "r\xE5holt": _2, "sandnessjoen": _2, "xn--sandnessjen-ogb": _2, "sandnessj\xF8en": _2, "skedsmokorset": _2, "slattum": _2, "spjelkavik": _2, "stathelle": _2, "stavern": _2, "stjordalshalsen": _2, "xn--stjrdalshalsen-sqb": _2, "stj\xF8rdalshalsen": _2, "tananger": _2, "tranby": _2, "vossevangen": _2, "aarborte": _2, "aejrie": _2, "afjord": _2, "xn--fjord-lra": _2, "\xE5fjord": _2, "agdenes": _2, "akershus": _63, "aknoluokta": _2, "xn--koluokta-7ya57h": _2, "\xE1k\u014Boluokta": _2, "al": _2, "xn--l-1fa": _2, "\xE5l": _2, "alaheadju": _2, "xn--laheadju-7ya": _2, "\xE1laheadju": _2, "alesund": _2, "xn--lesund-hua": _2, "\xE5lesund": _2, "alstahaug": _2, "alta": _2, "xn--lt-liac": _2, "\xE1lt\xE1": _2, "alvdal": _2, "amli": _2, "xn--mli-tla": _2, "\xE5mli": _2, "amot": _2, "xn--mot-tla": _2, "\xE5mot": _2, "andasuolo": _2, "andebu": _2, "andoy": _2, "xn--andy-ira": _2, "and\xF8y": _2, "ardal": _2, "xn--rdal-poa": _2, "\xE5rdal": _2, "aremark": _2, "arendal": _2, "xn--s-1fa": _2, "\xE5s": _2, "aseral": _2, "xn--seral-lra": _2, "\xE5seral": _2, "asker": _2, "askim": _2, "askoy": _2, "xn--asky-ira": _2, "ask\xF8y": _2, "askvoll": _2, "asnes": _2, "xn--snes-poa": _2, "\xE5snes": _2, "audnedaln": _2, "aukra": _2, "aure": _2, "aurland": _2, "aurskog-holand": _2, "xn--aurskog-hland-jnb": _2, "aurskog-h\xF8land": _2, "austevoll": _2, "austrheim": _2, "averoy": _2, "xn--avery-yua": _2, "aver\xF8y": _2, "badaddja": _2, "xn--bdddj-mrabd": _2, "b\xE5d\xE5ddj\xE5": _2, "xn--brum-voa": _2, "b\xE6rum": _2, "bahcavuotna": _2, "xn--bhcavuotna-s4a": _2, "b\xE1hcavuotna": _2, "bahccavuotna": _2, "xn--bhccavuotna-k7a": _2, "b\xE1hccavuotna": _2, "baidar": _2, "xn--bidr-5nac": _2, "b\xE1id\xE1r": _2, "bajddar": _2, "xn--bjddar-pta": _2, "b\xE1jddar": _2, "balat": _2, "xn--blt-elab": _2, "b\xE1l\xE1t": _2, "balestrand": _2, "ballangen": _2, "balsfjord": _2, "bamble": _2, "bardu": _2, "barum": _2, "batsfjord": _2, "xn--btsfjord-9za": _2, "b\xE5tsfjord": _2, "bearalvahki": _2, "xn--bearalvhki-y4a": _2, "bearalv\xE1hki": _2, "beardu": _2, "beiarn": _2, "berg": _2, "bergen": _2, "berlevag": _2, "xn--berlevg-jxa": _2, "berlev\xE5g": _2, "bievat": _2, "xn--bievt-0qa": _2, "biev\xE1t": _2, "bindal": _2, "birkenes": _2, "bjarkoy": _2, "xn--bjarky-fya": _2, "bjark\xF8y": _2, "bjerkreim": _2, "bjugn": _2, "bodo": _2, "xn--bod-2na": _2, "bod\xF8": _2, "bokn": _2, "bomlo": _2, "xn--bmlo-gra": _2, "b\xF8mlo": _2, "bremanger": _2, "bronnoy": _2, "xn--brnny-wuac": _2, "br\xF8nn\xF8y": _2, "budejju": _2, "buskerud": _63, "bygland": _2, "bykle": _2, "cahcesuolo": _2, "xn--hcesuolo-7ya35b": _2, "\u010D\xE1hcesuolo": _2, "davvenjarga": _2, "xn--davvenjrga-y4a": _2, "davvenj\xE1rga": _2, "davvesiida": _2, "deatnu": _2, "dielddanuorri": _2, "divtasvuodna": _2, "divttasvuotna": _2, "donna": _2, "xn--dnna-gra": _2, "d\xF8nna": _2, "dovre": _2, "drammen": _2, "drangedal": _2, "dyroy": _2, "xn--dyry-ira": _2, "dyr\xF8y": _2, "eid": _2, "eidfjord": _2, "eidsberg": _2, "eidskog": _2, "eidsvoll": _2, "eigersund": _2, "elverum": _2, "enebakk": _2, "engerdal": _2, "etne": _2, "etnedal": _2, "evenassi": _2, "xn--eveni-0qa01ga": _2, "even\xE1\u0161\u0161i": _2, "evenes": _2, "evje-og-hornnes": _2, "farsund": _2, "fauske": _2, "fedje": _2, "fet": _2, "finnoy": _2, "xn--finny-yua": _2, "finn\xF8y": _2, "fitjar": _2, "fjaler": _2, "fjell": _2, "fla": _2, "xn--fl-zia": _2, "fl\xE5": _2, "flakstad": _2, "flatanger": _2, "flekkefjord": _2, "flesberg": _2, "flora": _2, "folldal": _2, "forde": _2, "xn--frde-gra": _2, "f\xF8rde": _2, "forsand": _2, "fosnes": _2, "xn--frna-woa": _2, "fr\xE6na": _2, "frana": _2, "frei": _2, "frogn": _2, "froland": _2, "frosta": _2, "froya": _2, "xn--frya-hra": _2, "fr\xF8ya": _2, "fuoisku": _2, "fuossko": _2, "fusa": _2, "fyresdal": _2, "gaivuotna": _2, "xn--givuotna-8ya": _2, "g\xE1ivuotna": _2, "galsa": _2, "xn--gls-elac": _2, "g\xE1ls\xE1": _2, "gamvik": _2, "gangaviika": _2, "xn--ggaviika-8ya47h": _2, "g\xE1\u014Bgaviika": _2, "gaular": _2, "gausdal": _2, "giehtavuoatna": _2, "gildeskal": _2, "xn--gildeskl-g0a": _2, "gildesk\xE5l": _2, "giske": _2, "gjemnes": _2, "gjerdrum": _2, "gjerstad": _2, "gjesdal": _2, "gjovik": _2, "xn--gjvik-wua": _2, "gj\xF8vik": _2, "gloppen": _2, "gol": _2, "gran": _2, "grane": _2, "granvin": _2, "gratangen": _2, "grimstad": _2, "grong": _2, "grue": _2, "gulen": _2, "guovdageaidnu": _2, "ha": _2, "xn--h-2fa": _2, "h\xE5": _2, "habmer": _2, "xn--hbmer-xqa": _2, "h\xE1bmer": _2, "hadsel": _2, "xn--hgebostad-g3a": _2, "h\xE6gebostad": _2, "hagebostad": _2, "halden": _2, "halsa": _2, "hamar": _2, "hamaroy": _2, "hammarfeasta": _2, "xn--hmmrfeasta-s4ac": _2, "h\xE1mm\xE1rfeasta": _2, "hammerfest": _2, "hapmir": _2, "xn--hpmir-xqa": _2, "h\xE1pmir": _2, "haram": _2, "hareid": _2, "harstad": _2, "hasvik": _2, "hattfjelldal": _2, "haugesund": _2, "hedmark": [0, { "os": _2, "valer": _2, "xn--vler-qoa": _2, "v\xE5ler": _2 }], "hemne": _2, "hemnes": _2, "hemsedal": _2, "hitra": _2, "hjartdal": _2, "hjelmeland": _2, "hobol": _2, "xn--hobl-ira": _2, "hob\xF8l": _2, "hof": _2, "hol": _2, "hole": _2, "holmestrand": _2, "holtalen": _2, "xn--holtlen-hxa": _2, "holt\xE5len": _2, "hordaland": [0, { "os": _2 }], "hornindal": _2, "horten": _2, "hoyanger": _2, "xn--hyanger-q1a": _2, "h\xF8yanger": _2, "hoylandet": _2, "xn--hylandet-54a": _2, "h\xF8ylandet": _2, "hurdal": _2, "hurum": _2, "hvaler": _2, "hyllestad": _2, "ibestad": _2, "inderoy": _2, "xn--indery-fya": _2, "inder\xF8y": _2, "iveland": _2, "ivgu": _2, "jevnaker": _2, "jolster": _2, "xn--jlster-bya": _2, "j\xF8lster": _2, "jondal": _2, "kafjord": _2, "xn--kfjord-iua": _2, "k\xE5fjord": _2, "karasjohka": _2, "xn--krjohka-hwab49j": _2, "k\xE1r\xE1\u0161johka": _2, "karasjok": _2, "karlsoy": _2, "karmoy": _2, "xn--karmy-yua": _2, "karm\xF8y": _2, "kautokeino": _2, "klabu": _2, "xn--klbu-woa": _2, "kl\xE6bu": _2, "klepp": _2, "kongsberg": _2, "kongsvinger": _2, "kraanghke": _2, "xn--kranghke-b0a": _2, "kr\xE5anghke": _2, "kragero": _2, "xn--krager-gya": _2, "krager\xF8": _2, "kristiansand": _2, "kristiansund": _2, "krodsherad": _2, "xn--krdsherad-m8a": _2, "kr\xF8dsherad": _2, "xn--kvfjord-nxa": _2, "kv\xE6fjord": _2, "xn--kvnangen-k0a": _2, "kv\xE6nangen": _2, "kvafjord": _2, "kvalsund": _2, "kvam": _2, "kvanangen": _2, "kvinesdal": _2, "kvinnherad": _2, "kviteseid": _2, "kvitsoy": _2, "xn--kvitsy-fya": _2, "kvits\xF8y": _2, "laakesvuemie": _2, "xn--lrdal-sra": _2, "l\xE6rdal": _2, "lahppi": _2, "xn--lhppi-xqa": _2, "l\xE1hppi": _2, "lardal": _2, "larvik": _2, "lavagis": _2, "lavangen": _2, "leangaviika": _2, "xn--leagaviika-52b": _2, "lea\u014Bgaviika": _2, "lebesby": _2, "leikanger": _2, "leirfjord": _2, "leka": _2, "leksvik": _2, "lenvik": _2, "lerdal": _2, "lesja": _2, "levanger": _2, "lier": _2, "lierne": _2, "lillehammer": _2, "lillesand": _2, "lindas": _2, "xn--linds-pra": _2, "lind\xE5s": _2, "lindesnes": _2, "loabat": _2, "xn--loabt-0qa": _2, "loab\xE1t": _2, "lodingen": _2, "xn--ldingen-q1a": _2, "l\xF8dingen": _2, "lom": _2, "loppa": _2, "lorenskog": _2, "xn--lrenskog-54a": _2, "l\xF8renskog": _2, "loten": _2, "xn--lten-gra": _2, "l\xF8ten": _2, "lund": _2, "lunner": _2, "luroy": _2, "xn--lury-ira": _2, "lur\xF8y": _2, "luster": _2, "lyngdal": _2, "lyngen": _2, "malatvuopmi": _2, "xn--mlatvuopmi-s4a": _2, "m\xE1latvuopmi": _2, "malselv": _2, "xn--mlselv-iua": _2, "m\xE5lselv": _2, "malvik": _2, "mandal": _2, "marker": _2, "marnardal": _2, "masfjorden": _2, "masoy": _2, "xn--msy-ula0h": _2, "m\xE5s\xF8y": _2, "matta-varjjat": _2, "xn--mtta-vrjjat-k7af": _2, "m\xE1tta-v\xE1rjjat": _2, "meland": _2, "meldal": _2, "melhus": _2, "meloy": _2, "xn--mely-ira": _2, "mel\xF8y": _2, "meraker": _2, "xn--merker-kua": _2, "mer\xE5ker": _2, "midsund": _2, "midtre-gauldal": _2, "moareke": _2, "xn--moreke-jua": _2, "mo\xE5reke": _2, "modalen": _2, "modum": _2, "molde": _2, "more-og-romsdal": [0, { "heroy": _2, "sande": _2 }], "xn--mre-og-romsdal-qqb": [0, { "xn--hery-ira": _2, "sande": _2 }], "m\xF8re-og-romsdal": [0, { "her\xF8y": _2, "sande": _2 }], "moskenes": _2, "moss": _2, "mosvik": _2, "muosat": _2, "xn--muost-0qa": _2, "muos\xE1t": _2, "naamesjevuemie": _2, "xn--nmesjevuemie-tcba": _2, "n\xE5\xE5mesjevuemie": _2, "xn--nry-yla5g": _2, "n\xE6r\xF8y": _2, "namdalseid": _2, "namsos": _2, "namsskogan": _2, "nannestad": _2, "naroy": _2, "narviika": _2, "narvik": _2, "naustdal": _2, "navuotna": _2, "xn--nvuotna-hwa": _2, "n\xE1vuotna": _2, "nedre-eiker": _2, "nesna": _2, "nesodden": _2, "nesseby": _2, "nesset": _2, "nissedal": _2, "nittedal": _2, "nord-aurdal": _2, "nord-fron": _2, "nord-odal": _2, "norddal": _2, "nordkapp": _2, "nordland": [0, { "bo": _2, "xn--b-5ga": _2, "b\xF8": _2, "heroy": _2, "xn--hery-ira": _2, "her\xF8y": _2 }], "nordre-land": _2, "nordreisa": _2, "nore-og-uvdal": _2, "notodden": _2, "notteroy": _2, "xn--nttery-byae": _2, "n\xF8tter\xF8y": _2, "odda": _2, "oksnes": _2, "xn--ksnes-uua": _2, "\xF8ksnes": _2, "omasvuotna": _2, "oppdal": _2, "oppegard": _2, "xn--oppegrd-ixa": _2, "oppeg\xE5rd": _2, "orkdal": _2, "orland": _2, "xn--rland-uua": _2, "\xF8rland": _2, "orskog": _2, "xn--rskog-uua": _2, "\xF8rskog": _2, "orsta": _2, "xn--rsta-fra": _2, "\xF8rsta": _2, "osen": _2, "osteroy": _2, "xn--ostery-fya": _2, "oster\xF8y": _2, "ostfold": [0, { "valer": _2 }], "xn--stfold-9xa": [0, { "xn--vler-qoa": _2 }], "\xF8stfold": [0, { "v\xE5ler": _2 }], "ostre-toten": _2, "xn--stre-toten-zcb": _2, "\xF8stre-toten": _2, "overhalla": _2, "ovre-eiker": _2, "xn--vre-eiker-k8a": _2, "\xF8vre-eiker": _2, "oyer": _2, "xn--yer-zna": _2, "\xF8yer": _2, "oygarden": _2, "xn--ygarden-p1a": _2, "\xF8ygarden": _2, "oystre-slidre": _2, "xn--ystre-slidre-ujb": _2, "\xF8ystre-slidre": _2, "porsanger": _2, "porsangu": _2, "xn--porsgu-sta26f": _2, "pors\xE1\u014Bgu": _2, "porsgrunn": _2, "rade": _2, "xn--rde-ula": _2, "r\xE5de": _2, "radoy": _2, "xn--rady-ira": _2, "rad\xF8y": _2, "xn--rlingen-mxa": _2, "r\xE6lingen": _2, "rahkkeravju": _2, "xn--rhkkervju-01af": _2, "r\xE1hkker\xE1vju": _2, "raisa": _2, "xn--risa-5na": _2, "r\xE1isa": _2, "rakkestad": _2, "ralingen": _2, "rana": _2, "randaberg": _2, "rauma": _2, "rendalen": _2, "rennebu": _2, "rennesoy": _2, "xn--rennesy-v1a": _2, "rennes\xF8y": _2, "rindal": _2, "ringebu": _2, "ringerike": _2, "ringsaker": _2, "risor": _2, "xn--risr-ira": _2, "ris\xF8r": _2, "rissa": _2, "roan": _2, "rodoy": _2, "xn--rdy-0nab": _2, "r\xF8d\xF8y": _2, "rollag": _2, "romsa": _2, "romskog": _2, "xn--rmskog-bya": _2, "r\xF8mskog": _2, "roros": _2, "xn--rros-gra": _2, "r\xF8ros": _2, "rost": _2, "xn--rst-0na": _2, "r\xF8st": _2, "royken": _2, "xn--ryken-vua": _2, "r\xF8yken": _2, "royrvik": _2, "xn--ryrvik-bya": _2, "r\xF8yrvik": _2, "ruovat": _2, "rygge": _2, "salangen": _2, "salat": _2, "xn--slat-5na": _2, "s\xE1lat": _2, "xn--slt-elab": _2, "s\xE1l\xE1t": _2, "saltdal": _2, "samnanger": _2, "sandefjord": _2, "sandnes": _2, "sandoy": _2, "xn--sandy-yua": _2, "sand\xF8y": _2, "sarpsborg": _2, "sauda": _2, "sauherad": _2, "sel": _2, "selbu": _2, "selje": _2, "seljord": _2, "siellak": _2, "sigdal": _2, "siljan": _2, "sirdal": _2, "skanit": _2, "xn--sknit-yqa": _2, "sk\xE1nit": _2, "skanland": _2, "xn--sknland-fxa": _2, "sk\xE5nland": _2, "skaun": _2, "skedsmo": _2, "ski": _2, "skien": _2, "skierva": _2, "xn--skierv-uta": _2, "skierv\xE1": _2, "skiptvet": _2, "skjak": _2, "xn--skjk-soa": _2, "skj\xE5k": _2, "skjervoy": _2, "xn--skjervy-v1a": _2, "skjerv\xF8y": _2, "skodje": _2, "smola": _2, "xn--smla-hra": _2, "sm\xF8la": _2, "snaase": _2, "xn--snase-nra": _2, "sn\xE5ase": _2, "snasa": _2, "xn--snsa-roa": _2, "sn\xE5sa": _2, "snillfjord": _2, "snoasa": _2, "sogndal": _2, "sogne": _2, "xn--sgne-gra": _2, "s\xF8gne": _2, "sokndal": _2, "sola": _2, "solund": _2, "somna": _2, "xn--smna-gra": _2, "s\xF8mna": _2, "sondre-land": _2, "xn--sndre-land-0cb": _2, "s\xF8ndre-land": _2, "songdalen": _2, "sor-aurdal": _2, "xn--sr-aurdal-l8a": _2, "s\xF8r-aurdal": _2, "sor-fron": _2, "xn--sr-fron-q1a": _2, "s\xF8r-fron": _2, "sor-odal": _2, "xn--sr-odal-q1a": _2, "s\xF8r-odal": _2, "sor-varanger": _2, "xn--sr-varanger-ggb": _2, "s\xF8r-varanger": _2, "sorfold": _2, "xn--srfold-bya": _2, "s\xF8rfold": _2, "sorreisa": _2, "xn--srreisa-q1a": _2, "s\xF8rreisa": _2, "sortland": _2, "sorum": _2, "xn--srum-gra": _2, "s\xF8rum": _2, "spydeberg": _2, "stange": _2, "stavanger": _2, "steigen": _2, "steinkjer": _2, "stjordal": _2, "xn--stjrdal-s1a": _2, "stj\xF8rdal": _2, "stokke": _2, "stor-elvdal": _2, "stord": _2, "stordal": _2, "storfjord": _2, "strand": _2, "stranda": _2, "stryn": _2, "sula": _2, "suldal": _2, "sund": _2, "sunndal": _2, "surnadal": _2, "sveio": _2, "svelvik": _2, "sykkylven": _2, "tana": _2, "telemark": [0, { "bo": _2, "xn--b-5ga": _2, "b\xF8": _2 }], "time": _2, "tingvoll": _2, "tinn": _2, "tjeldsund": _2, "tjome": _2, "xn--tjme-hra": _2, "tj\xF8me": _2, "tokke": _2, "tolga": _2, "tonsberg": _2, "xn--tnsberg-q1a": _2, "t\xF8nsberg": _2, "torsken": _2, "xn--trna-woa": _2, "tr\xE6na": _2, "trana": _2, "tranoy": _2, "xn--trany-yua": _2, "tran\xF8y": _2, "troandin": _2, "trogstad": _2, "xn--trgstad-r1a": _2, "tr\xF8gstad": _2, "tromsa": _2, "tromso": _2, "xn--troms-zua": _2, "troms\xF8": _2, "trondheim": _2, "trysil": _2, "tvedestrand": _2, "tydal": _2, "tynset": _2, "tysfjord": _2, "tysnes": _2, "xn--tysvr-vra": _2, "tysv\xE6r": _2, "tysvar": _2, "ullensaker": _2, "ullensvang": _2, "ulvik": _2, "unjarga": _2, "xn--unjrga-rta": _2, "unj\xE1rga": _2, "utsira": _2, "vaapste": _2, "vadso": _2, "xn--vads-jra": _2, "vads\xF8": _2, "xn--vry-yla5g": _2, "v\xE6r\xF8y": _2, "vaga": _2, "xn--vg-yiab": _2, "v\xE5g\xE5": _2, "vagan": _2, "xn--vgan-qoa": _2, "v\xE5gan": _2, "vagsoy": _2, "xn--vgsy-qoa0j": _2, "v\xE5gs\xF8y": _2, "vaksdal": _2, "valle": _2, "vang": _2, "vanylven": _2, "vardo": _2, "xn--vard-jra": _2, "vard\xF8": _2, "varggat": _2, "xn--vrggt-xqad": _2, "v\xE1rgg\xE1t": _2, "varoy": _2, "vefsn": _2, "vega": _2, "vegarshei": _2, "xn--vegrshei-c0a": _2, "veg\xE5rshei": _2, "vennesla": _2, "verdal": _2, "verran": _2, "vestby": _2, "vestfold": [0, { "sande": _2 }], "vestnes": _2, "vestre-slidre": _2, "vestre-toten": _2, "vestvagoy": _2, "xn--vestvgy-ixa6o": _2, "vestv\xE5g\xF8y": _2, "vevelstad": _2, "vik": _2, "vikna": _2, "vindafjord": _2, "voagat": _2, "volda": _2, "voss": _2, "co": _3, "123hjemmeside": _3, "myspreadshop": _3 }], "np": _18, "nr": _58, "nu": [1, { "merseine": _3, "mine": _3, "shacknet": _3, "enterprisecloud": _3 }], "nz": [1, { "ac": _2, "co": _2, "cri": _2, "geek": _2, "gen": _2, "govt": _2, "health": _2, "iwi": _2, "kiwi": _2, "maori": _2, "xn--mori-qsa": _2, "m\u0101ori": _2, "mil": _2, "net": _2, "org": _2, "parliament": _2, "school": _2, "cloudns": _3 }], "om": [1, { "co": _2, "com": _2, "edu": _2, "gov": _2, "med": _2, "museum": _2, "net": _2, "org": _2, "pro": _2 }], "onion": _2, "org": [1, { "altervista": _3, "pimienta": _3, "poivron": _3, "potager": _3, "sweetpepper": _3, "cdn77": [0, { "c": _3, "rsc": _3 }], "cdn77-secure": [0, { "origin": [0, { "ssl": _3 }] }], "ae": _3, "cloudns": _3, "ip-dynamic": _3, "ddnss": _3, "dpdns": _3, "duckdns": _3, "tunk": _3, "blogdns": _3, "blogsite": _3, "boldlygoingnowhere": _3, "dnsalias": _3, "dnsdojo": _3, "doesntexist": _3, "dontexist": _3, "doomdns": _3, "dvrdns": _3, "dynalias": _3, "dyndns": [2, { "go": _3, "home": _3 }], "endofinternet": _3, "endoftheinternet": _3, "from-me": _3, "game-host": _3, "gotdns": _3, "hobby-site": _3, "homedns": _3, "homeftp": _3, "homelinux": _3, "homeunix": _3, "is-a-bruinsfan": _3, "is-a-candidate": _3, "is-a-celticsfan": _3, "is-a-chef": _3, "is-a-geek": _3, "is-a-knight": _3, "is-a-linux-user": _3, "is-a-patsfan": _3, "is-a-soxfan": _3, "is-found": _3, "is-lost": _3, "is-saved": _3, "is-very-bad": _3, "is-very-evil": _3, "is-very-good": _3, "is-very-nice": _3, "is-very-sweet": _3, "isa-geek": _3, "kicks-ass": _3, "misconfused": _3, "podzone": _3, "readmyblog": _3, "selfip": _3, "sellsyourhome": _3, "servebbs": _3, "serveftp": _3, "servegame": _3, "stuff-4-sale": _3, "webhop": _3, "accesscam": _3, "camdvr": _3, "freeddns": _3, "mywire": _3, "webredirect": _3, "twmail": _3, "eu": [2, { "al": _3, "asso": _3, "at": _3, "au": _3, "be": _3, "bg": _3, "ca": _3, "cd": _3, "ch": _3, "cn": _3, "cy": _3, "cz": _3, "de": _3, "dk": _3, "edu": _3, "ee": _3, "es": _3, "fi": _3, "fr": _3, "gr": _3, "hr": _3, "hu": _3, "ie": _3, "il": _3, "in": _3, "int": _3, "is": _3, "it": _3, "jp": _3, "kr": _3, "lt": _3, "lu": _3, "lv": _3, "me": _3, "mk": _3, "mt": _3, "my": _3, "net": _3, "ng": _3, "nl": _3, "no": _3, "nz": _3, "pl": _3, "pt": _3, "ro": _3, "ru": _3, "se": _3, "si": _3, "sk": _3, "tr": _3, "uk": _3, "us": _3 }], "fedorainfracloud": _3, "fedorapeople": _3, "fedoraproject": [0, { "cloud": _3, "os": _43, "stg": [0, { "os": _43 }] }], "freedesktop": _3, "hatenadiary": _3, "hepforge": _3, "in-dsl": _3, "in-vpn": _3, "js": _3, "barsy": _3, "mayfirst": _3, "routingthecloud": _3, "bmoattachments": _3, "cable-modem": _3, "collegefan": _3, "couchpotatofries": _3, "hopto": _3, "mlbfan": _3, "myftp": _3, "mysecuritycamera": _3, "nflfan": _3, "no-ip": _3, "read-books": _3, "ufcfan": _3, "zapto": _3, "dynserv": _3, "now-dns": _3, "is-local": _3, "httpbin": _3, "pubtls": _3, "jpn": _3, "my-firewall": _3, "myfirewall": _3, "spdns": _3, "small-web": _3, "dsmynas": _3, "familyds": _3, "teckids": _57, "tuxfamily": _3, "diskstation": _3, "hk": _3, "us": _3, "toolforge": _3, "wmcloud": [2, { "beta": _3 }], "wmflabs": _3, "za": _3 }], "pa": [1, { "abo": _2, "ac": _2, "com": _2, "edu": _2, "gob": _2, "ing": _2, "med": _2, "net": _2, "nom": _2, "org": _2, "sld": _2 }], "pe": [1, { "com": _2, "edu": _2, "gob": _2, "mil": _2, "net": _2, "nom": _2, "org": _2 }], "pf": [1, { "com": _2, "edu": _2, "org": _2 }], "pg": _18, "ph": [1, { "com": _2, "edu": _2, "gov": _2, "i": _2, "mil": _2, "net": _2, "ngo": _2, "org": _2, "cloudns": _3 }], "pk": [1, { "ac": _2, "biz": _2, "com": _2, "edu": _2, "fam": _2, "gkp": _2, "gob": _2, "gog": _2, "gok": _2, "gop": _2, "gos": _2, "gov": _2, "net": _2, "org": _2, "web": _2 }], "pl": [1, { "com": _2, "net": _2, "org": _2, "agro": _2, "aid": _2, "atm": _2, "auto": _2, "biz": _2, "edu": _2, "gmina": _2, "gsm": _2, "info": _2, "mail": _2, "media": _2, "miasta": _2, "mil": _2, "nieruchomosci": _2, "nom": _2, "pc": _2, "powiat": _2, "priv": _2, "realestate": _2, "rel": _2, "sex": _2, "shop": _2, "sklep": _2, "sos": _2, "szkola": _2, "targi": _2, "tm": _2, "tourism": _2, "travel": _2, "turystyka": _2, "gov": [1, { "ap": _2, "griw": _2, "ic": _2, "is": _2, "kmpsp": _2, "konsulat": _2, "kppsp": _2, "kwp": _2, "kwpsp": _2, "mup": _2, "mw": _2, "oia": _2, "oirm": _2, "oke": _2, "oow": _2, "oschr": _2, "oum": _2, "pa": _2, "pinb": _2, "piw": _2, "po": _2, "pr": _2, "psp": _2, "psse": _2, "pup": _2, "rzgw": _2, "sa": _2, "sdn": _2, "sko": _2, "so": _2, "sr": _2, "starostwo": _2, "ug": _2, "ugim": _2, "um": _2, "umig": _2, "upow": _2, "uppo": _2, "us": _2, "uw": _2, "uzs": _2, "wif": _2, "wiih": _2, "winb": _2, "wios": _2, "witd": _2, "wiw": _2, "wkz": _2, "wsa": _2, "wskr": _2, "wsse": _2, "wuoz": _2, "wzmiuw": _2, "zp": _2, "zpisdn": _2 }], "augustow": _2, "babia-gora": _2, "bedzin": _2, "beskidy": _2, "bialowieza": _2, "bialystok": _2, "bielawa": _2, "bieszczady": _2, "boleslawiec": _2, "bydgoszcz": _2, "bytom": _2, "cieszyn": _2, "czeladz": _2, "czest": _2, "dlugoleka": _2, "elblag": _2, "elk": _2, "glogow": _2, "gniezno": _2, "gorlice": _2, "grajewo": _2, "ilawa": _2, "jaworzno": _2, "jelenia-gora": _2, "jgora": _2, "kalisz": _2, "karpacz": _2, "kartuzy": _2, "kaszuby": _2, "katowice": _2, "kazimierz-dolny": _2, "kepno": _2, "ketrzyn": _2, "klodzko": _2, "kobierzyce": _2, "kolobrzeg": _2, "konin": _2, "konskowola": _2, "kutno": _2, "lapy": _2, "lebork": _2, "legnica": _2, "lezajsk": _2, "limanowa": _2, "lomza": _2, "lowicz": _2, "lubin": _2, "lukow": _2, "malbork": _2, "malopolska": _2, "mazowsze": _2, "mazury": _2, "mielec": _2, "mielno": _2, "mragowo": _2, "naklo": _2, "nowaruda": _2, "nysa": _2, "olawa": _2, "olecko": _2, "olkusz": _2, "olsztyn": _2, "opoczno": _2, "opole": _2, "ostroda": _2, "ostroleka": _2, "ostrowiec": _2, "ostrowwlkp": _2, "pila": _2, "pisz": _2, "podhale": _2, "podlasie": _2, "polkowice": _2, "pomorskie": _2, "pomorze": _2, "prochowice": _2, "pruszkow": _2, "przeworsk": _2, "pulawy": _2, "radom": _2, "rawa-maz": _2, "rybnik": _2, "rzeszow": _2, "sanok": _2, "sejny": _2, "skoczow": _2, "slask": _2, "slupsk": _2, "sosnowiec": _2, "stalowa-wola": _2, "starachowice": _2, "stargard": _2, "suwalki": _2, "swidnica": _2, "swiebodzin": _2, "swinoujscie": _2, "szczecin": _2, "szczytno": _2, "tarnobrzeg": _2, "tgory": _2, "turek": _2, "tychy": _2, "ustka": _2, "walbrzych": _2, "warmia": _2, "warszawa": _2, "waw": _2, "wegrow": _2, "wielun": _2, "wlocl": _2, "wloclawek": _2, "wodzislaw": _2, "wolomin": _2, "wroclaw": _2, "zachpomor": _2, "zagan": _2, "zarow": _2, "zgora": _2, "zgorzelec": _2, "art": _3, "gliwice": _3, "krakow": _3, "poznan": _3, "wroc": _3, "zakopane": _3, "beep": _3, "ecommerce-shop": _3, "cfolks": _3, "dfirma": _3, "dkonto": _3, "you2": _3, "shoparena": _3, "homesklep": _3, "sdscloud": _3, "unicloud": _3, "lodz": _3, "pabianice": _3, "plock": _3, "sieradz": _3, "skierniewice": _3, "zgierz": _3, "krasnik": _3, "leczna": _3, "lubartow": _3, "lublin": _3, "poniatowa": _3, "swidnik": _3, "co": _3, "torun": _3, "simplesite": _3, "myspreadshop": _3, "gda": _3, "gdansk": _3, "gdynia": _3, "med": _3, "sopot": _3, "bielsko": _3 }], "pm": [1, { "own": _3, "name": _3 }], "pn": [1, { "co": _2, "edu": _2, "gov": _2, "net": _2, "org": _2 }], "post": _2, "pr": [1, { "biz": _2, "com": _2, "edu": _2, "gov": _2, "info": _2, "isla": _2, "name": _2, "net": _2, "org": _2, "pro": _2, "ac": _2, "est": _2, "prof": _2 }], "pro": [1, { "aaa": _2, "aca": _2, "acct": _2, "avocat": _2, "bar": _2, "cpa": _2, "eng": _2, "jur": _2, "law": _2, "med": _2, "recht": _2, "12chars": _3, "cloudns": _3, "barsy": _3, "ngrok": _3 }], "ps": [1, { "com": _2, "edu": _2, "gov": _2, "net": _2, "org": _2, "plo": _2, "sec": _2 }], "pt": [1, { "com": _2, "edu": _2, "gov": _2, "int": _2, "net": _2, "nome": _2, "org": _2, "publ": _2, "123paginaweb": _3 }], "pw": [1, { "gov": _2, "cloudns": _3, "x443": _3 }], "py": [1, { "com": _2, "coop": _2, "edu": _2, "gov": _2, "mil": _2, "net": _2, "org": _2 }], "qa": [1, { "com": _2, "edu": _2, "gov": _2, "mil": _2, "name": _2, "net": _2, "org": _2, "sch": _2 }], "re": [1, { "asso": _2, "com": _2, "netlib": _3, "can": _3 }], "ro": [1, { "arts": _2, "com": _2, "firm": _2, "info": _2, "nom": _2, "nt": _2, "org": _2, "rec": _2, "store": _2, "tm": _2, "www": _2, "co": _3, "shop": _3, "barsy": _3 }], "rs": [1, { "ac": _2, "co": _2, "edu": _2, "gov": _2, "in": _2, "org": _2, "brendly": _52, "barsy": _3, "ox": _3 }], "ru": [1, { "ac": _3, "edu": _3, "gov": _3, "int": _3, "mil": _3, "eurodir": _3, "adygeya": _3, "bashkiria": _3, "bir": _3, "cbg": _3, "com": _3, "dagestan": _3, "grozny": _3, "kalmykia": _3, "kustanai": _3, "marine": _3, "mordovia": _3, "msk": _3, "mytis": _3, "nalchik": _3, "nov": _3, "pyatigorsk": _3, "spb": _3, "vladikavkaz": _3, "vladimir": _3, "na4u": _3, "mircloud": _3, "myjino": [2, { "hosting": _6, "landing": _6, "spectrum": _6, "vps": _6 }], "cldmail": [0, { "hb": _3 }], "mcdir": [2, { "vps": _3 }], "mcpre": _3, "net": _3, "org": _3, "pp": _3, "lk3": _3, "ras": _3 }], "rw": [1, { "ac": _2, "co": _2, "coop": _2, "gov": _2, "mil": _2, "net": _2, "org": _2 }], "sa": [1, { "com": _2, "edu": _2, "gov": _2, "med": _2, "net": _2, "org": _2, "pub": _2, "sch": _2 }], "sb": _4, "sc": _4, "sd": [1, { "com": _2, "edu": _2, "gov": _2, "info": _2, "med": _2, "net": _2, "org": _2, "tv": _2 }], "se": [1, { "a": _2, "ac": _2, "b": _2, "bd": _2, "brand": _2, "c": _2, "d": _2, "e": _2, "f": _2, "fh": _2, "fhsk": _2, "fhv": _2, "g": _2, "h": _2, "i": _2, "k": _2, "komforb": _2, "kommunalforbund": _2, "komvux": _2, "l": _2, "lanbib": _2, "m": _2, "n": _2, "naturbruksgymn": _2, "o": _2, "org": _2, "p": _2, "parti": _2, "pp": _2, "press": _2, "r": _2, "s": _2, "t": _2, "tm": _2, "u": _2, "w": _2, "x": _2, "y": _2, "z": _2, "com": _3, "iopsys": _3, "123minsida": _3, "itcouldbewor": _3, "myspreadshop": _3 }], "sg": [1, { "com": _2, "edu": _2, "gov": _2, "net": _2, "org": _2, "enscaled": _3 }], "sh": [1, { "com": _2, "gov": _2, "mil": _2, "net": _2, "org": _2, "hashbang": _3, "botda": _3, "lovable": _3, "platform": [0, { "ent": _3, "eu": _3, "us": _3 }], "now": _3 }], "si": [1, { "f5": _3, "gitapp": _3, "gitpage": _3 }], "sj": _2, "sk": _2, "sl": _4, "sm": _2, "sn": [1, { "art": _2, "com": _2, "edu": _2, "gouv": _2, "org": _2, "perso": _2, "univ": _2 }], "so": [1, { "com": _2, "edu": _2, "gov": _2, "me": _2, "net": _2, "org": _2, "surveys": _3 }], "sr": _2, "ss": [1, { "biz": _2, "co": _2, "com": _2, "edu": _2, "gov": _2, "me": _2, "net": _2, "org": _2, "sch": _2 }], "st": [1, { "co": _2, "com": _2, "consulado": _2, "edu": _2, "embaixada": _2, "mil": _2, "net": _2, "org": _2, "principe": _2, "saotome": _2, "store": _2, "helioho": _3, "kirara": _3, "noho": _3 }], "su": [1, { "abkhazia": _3, "adygeya": _3, "aktyubinsk": _3, "arkhangelsk": _3, "armenia": _3, "ashgabad": _3, "azerbaijan": _3, "balashov": _3, "bashkiria": _3, "bryansk": _3, "bukhara": _3, "chimkent": _3, "dagestan": _3, "east-kazakhstan": _3, "exnet": _3, "georgia": _3, "grozny": _3, "ivanovo": _3, "jambyl": _3, "kalmykia": _3, "kaluga": _3, "karacol": _3, "karaganda": _3, "karelia": _3, "khakassia": _3, "krasnodar": _3, "kurgan": _3, "kustanai": _3, "lenug": _3, "mangyshlak": _3, "mordovia": _3, "msk": _3, "murmansk": _3, "nalchik": _3, "navoi": _3, "north-kazakhstan": _3, "nov": _3, "obninsk": _3, "penza": _3, "pokrovsk": _3, "sochi": _3, "spb": _3, "tashkent": _3, "termez": _3, "togliatti": _3, "troitsk": _3, "tselinograd": _3, "tula": _3, "tuva": _3, "vladikavkaz": _3, "vladimir": _3, "vologda": _3 }], "sv": [1, { "com": _2, "edu": _2, "gob": _2, "org": _2, "red": _2 }], "sx": _10, "sy": _5, "sz": [1, { "ac": _2, "co": _2, "org": _2 }], "tc": _2, "td": _2, "tel": _2, "tf": [1, { "sch": _3 }], "tg": _2, "th": [1, { "ac": _2, "co": _2, "go": _2, "in": _2, "mi": _2, "net": _2, "or": _2, "online": _3, "shop": _3 }], "tj": [1, { "ac": _2, "biz": _2, "co": _2, "com": _2, "edu": _2, "go": _2, "gov": _2, "int": _2, "mil": _2, "name": _2, "net": _2, "nic": _2, "org": _2, "test": _2, "web": _2 }], "tk": _2, "tl": _10, "tm": [1, { "co": _2, "com": _2, "edu": _2, "gov": _2, "mil": _2, "net": _2, "nom": _2, "org": _2 }], "tn": [1, { "com": _2, "ens": _2, "fin": _2, "gov": _2, "ind": _2, "info": _2, "intl": _2, "mincom": _2, "nat": _2, "net": _2, "org": _2, "perso": _2, "tourism": _2, "orangecloud": _3 }], "to": [1, { "611": _3, "com": _2, "edu": _2, "gov": _2, "mil": _2, "net": _2, "org": _2, "oya": _3, "x0": _3, "quickconnect": _25, "vpnplus": _3 }], "tr": [1, { "av": _2, "bbs": _2, "bel": _2, "biz": _2, "com": _2, "dr": _2, "edu": _2, "gen": _2, "gov": _2, "info": _2, "k12": _2, "kep": _2, "mil": _2, "name": _2, "net": _2, "org": _2, "pol": _2, "tel": _2, "tsk": _2, "tv": _2, "web": _2, "nc": _10 }], "tt": [1, { "biz": _2, "co": _2, "com": _2, "edu": _2, "gov": _2, "info": _2, "mil": _2, "name": _2, "net": _2, "org": _2, "pro": _2 }], "tv": [1, { "better-than": _3, "dyndns": _3, "on-the-web": _3, "worse-than": _3, "from": _3, "sakura": _3 }], "tw": [1, { "club": _2, "com": [1, { "mymailer": _3 }], "ebiz": _2, "edu": _2, "game": _2, "gov": _2, "idv": _2, "mil": _2, "net": _2, "org": _2, "url": _3, "mydns": _3 }], "tz": [1, { "ac": _2, "co": _2, "go": _2, "hotel": _2, "info": _2, "me": _2, "mil": _2, "mobi": _2, "ne": _2, "or": _2, "sc": _2, "tv": _2 }], "ua": [1, { "com": _2, "edu": _2, "gov": _2, "in": _2, "net": _2, "org": _2, "cherkassy": _2, "cherkasy": _2, "chernigov": _2, "chernihiv": _2, "chernivtsi": _2, "chernovtsy": _2, "ck": _2, "cn": _2, "cr": _2, "crimea": _2, "cv": _2, "dn": _2, "dnepropetrovsk": _2, "dnipropetrovsk": _2, "donetsk": _2, "dp": _2, "if": _2, "ivano-frankivsk": _2, "kh": _2, "kharkiv": _2, "kharkov": _2, "kherson": _2, "khmelnitskiy": _2, "khmelnytskyi": _2, "kiev": _2, "kirovograd": _2, "km": _2, "kr": _2, "kropyvnytskyi": _2, "krym": _2, "ks": _2, "kv": _2, "kyiv": _2, "lg": _2, "lt": _2, "lugansk": _2, "luhansk": _2, "lutsk": _2, "lv": _2, "lviv": _2, "mk": _2, "mykolaiv": _2, "nikolaev": _2, "od": _2, "odesa": _2, "odessa": _2, "pl": _2, "poltava": _2, "rivne": _2, "rovno": _2, "rv": _2, "sb": _2, "sebastopol": _2, "sevastopol": _2, "sm": _2, "sumy": _2, "te": _2, "ternopil": _2, "uz": _2, "uzhgorod": _2, "uzhhorod": _2, "vinnica": _2, "vinnytsia": _2, "vn": _2, "volyn": _2, "yalta": _2, "zakarpattia": _2, "zaporizhzhe": _2, "zaporizhzhia": _2, "zhitomir": _2, "zhytomyr": _2, "zp": _2, "zt": _2, "cc": _3, "inf": _3, "ltd": _3, "cx": _3, "biz": _3, "co": _3, "pp": _3, "v": _3 }], "ug": [1, { "ac": _2, "co": _2, "com": _2, "edu": _2, "go": _2, "gov": _2, "mil": _2, "ne": _2, "or": _2, "org": _2, "sc": _2, "us": _2 }], "uk": [1, { "ac": _2, "co": [1, { "bytemark": [0, { "dh": _3, "vm": _3 }], "layershift": _46, "barsy": _3, "barsyonline": _3, "retrosnub": _56, "nh-serv": _3, "no-ip": _3, "adimo": _3, "myspreadshop": _3 }], "gov": [1, { "api": _3, "campaign": _3, "service": _3 }], "ltd": _2, "me": _2, "net": _2, "nhs": _2, "org": [1, { "glug": _3, "lug": _3, "lugs": _3, "affinitylottery": _3, "raffleentry": _3, "weeklylottery": _3 }], "plc": _2, "police": _2, "sch": _18, "conn": _3, "copro": _3, "hosp": _3, "independent-commission": _3, "independent-inquest": _3, "independent-inquiry": _3, "independent-panel": _3, "independent-review": _3, "public-inquiry": _3, "royal-commission": _3, "pymnt": _3, "barsy": _3, "nimsite": _3, "oraclegovcloudapps": _6 }], "us": [1, { "dni": _2, "isa": _2, "nsn": _2, "ak": _64, "al": _64, "ar": _64, "as": _64, "az": _64, "ca": _64, "co": _64, "ct": _64, "dc": _64, "de": [1, { "cc": _2, "lib": _3 }], "fl": _64, "ga": _64, "gu": _64, "hi": _65, "ia": _64, "id": _64, "il": _64, "in": _64, "ks": _64, "ky": _64, "la": _64, "ma": [1, { "k12": [1, { "chtr": _2, "paroch": _2, "pvt": _2 }], "cc": _2, "lib": _2 }], "md": _64, "me": _64, "mi": [1, { "k12": _2, "cc": _2, "lib": _2, "ann-arbor": _2, "cog": _2, "dst": _2, "eaton": _2, "gen": _2, "mus": _2, "tec": _2, "washtenaw": _2 }], "mn": _64, "mo": _64, "ms": _64, "mt": _64, "nc": _64, "nd": _65, "ne": _64, "nh": _64, "nj": _64, "nm": _64, "nv": _64, "ny": _64, "oh": _64, "ok": _64, "or": _64, "pa": _64, "pr": _64, "ri": _65, "sc": _64, "sd": _65, "tn": _64, "tx": _64, "ut": _64, "va": _64, "vi": _64, "vt": _64, "wa": _64, "wi": _64, "wv": [1, { "cc": _2 }], "wy": _64, "cloudns": _3, "is-by": _3, "land-4-sale": _3, "stuff-4-sale": _3, "heliohost": _3, "enscaled": [0, { "phx": _3 }], "mircloud": _3, "ngo": _3, "golffan": _3, "noip": _3, "pointto": _3, "freeddns": _3, "srv": [2, { "gh": _3, "gl": _3 }], "platterp": _3, "servername": _3 }], "uy": [1, { "com": _2, "edu": _2, "gub": _2, "mil": _2, "net": _2, "org": _2 }], "uz": [1, { "co": _2, "com": _2, "net": _2, "org": _2 }], "va": _2, "vc": [1, { "com": _2, "edu": _2, "gov": _2, "mil": _2, "net": _2, "org": _2, "gv": [2, { "d": _3 }], "0e": _6, "mydns": _3 }], "ve": [1, { "arts": _2, "bib": _2, "co": _2, "com": _2, "e12": _2, "edu": _2, "emprende": _2, "firm": _2, "gob": _2, "gov": _2, "info": _2, "int": _2, "mil": _2, "net": _2, "nom": _2, "org": _2, "rar": _2, "rec": _2, "store": _2, "tec": _2, "web": _2 }], "vg": [1, { "edu": _2 }], "vi": [1, { "co": _2, "com": _2, "k12": _2, "net": _2, "org": _2 }], "vn": [1, { "ac": _2, "ai": _2, "biz": _2, "com": _2, "edu": _2, "gov": _2, "health": _2, "id": _2, "info": _2, "int": _2, "io": _2, "name": _2, "net": _2, "org": _2, "pro": _2, "angiang": _2, "bacgiang": _2, "backan": _2, "baclieu": _2, "bacninh": _2, "baria-vungtau": _2, "bentre": _2, "binhdinh": _2, "binhduong": _2, "binhphuoc": _2, "binhthuan": _2, "camau": _2, "cantho": _2, "caobang": _2, "daklak": _2, "daknong": _2, "danang": _2, "dienbien": _2, "dongnai": _2, "dongthap": _2, "gialai": _2, "hagiang": _2, "haiduong": _2, "haiphong": _2, "hanam": _2, "hanoi": _2, "hatinh": _2, "haugiang": _2, "hoabinh": _2, "hungyen": _2, "khanhhoa": _2, "kiengiang": _2, "kontum": _2, "laichau": _2, "lamdong": _2, "langson": _2, "laocai": _2, "longan": _2, "namdinh": _2, "nghean": _2, "ninhbinh": _2, "ninhthuan": _2, "phutho": _2, "phuyen": _2, "quangbinh": _2, "quangnam": _2, "quangngai": _2, "quangninh": _2, "quangtri": _2, "soctrang": _2, "sonla": _2, "tayninh": _2, "thaibinh": _2, "thainguyen": _2, "thanhhoa": _2, "thanhphohochiminh": _2, "thuathienhue": _2, "tiengiang": _2, "travinh": _2, "tuyenquang": _2, "vinhlong": _2, "vinhphuc": _2, "yenbai": _2 }], "vu": _45, "wf": [1, { "biz": _3, "sch": _3 }], "ws": [1, { "com": _2, "edu": _2, "gov": _2, "net": _2, "org": _2, "advisor": _6, "cloud66": _3, "dyndns": _3, "mypets": _3 }], "yt": [1, { "org": _3 }], "xn--mgbaam7a8h": _2, "\u0627\u0645\u0627\u0631\u0627\u062A": _2, "xn--y9a3aq": _2, "\u0570\u0561\u0575": _2, "xn--54b7fta0cc": _2, "\u09AC\u09BE\u0982\u09B2\u09BE": _2, "xn--90ae": _2, "\u0431\u0433": _2, "xn--mgbcpq6gpa1a": _2, "\u0627\u0644\u0628\u062D\u0631\u064A\u0646": _2, "xn--90ais": _2, "\u0431\u0435\u043B": _2, "xn--fiqs8s": _2, "\u4E2D\u56FD": _2, "xn--fiqz9s": _2, "\u4E2D\u570B": _2, "xn--lgbbat1ad8j": _2, "\u0627\u0644\u062C\u0632\u0627\u0626\u0631": _2, "xn--wgbh1c": _2, "\u0645\u0635\u0631": _2, "xn--e1a4c": _2, "\u0435\u044E": _2, "xn--qxa6a": _2, "\u03B5\u03C5": _2, "xn--mgbah1a3hjkrd": _2, "\u0645\u0648\u0631\u064A\u062A\u0627\u0646\u064A\u0627": _2, "xn--node": _2, "\u10D2\u10D4": _2, "xn--qxam": _2, "\u03B5\u03BB": _2, "xn--j6w193g": [1, { "xn--gmqw5a": _2, "xn--55qx5d": _2, "xn--mxtq1m": _2, "xn--wcvs22d": _2, "xn--uc0atv": _2, "xn--od0alg": _2 }], "\u9999\u6E2F": [1, { "\u500B\u4EBA": _2, "\u516C\u53F8": _2, "\u653F\u5E9C": _2, "\u6559\u80B2": _2, "\u7D44\u7E54": _2, "\u7DB2\u7D61": _2 }], "xn--2scrj9c": _2, "\u0CAD\u0CBE\u0CB0\u0CA4": _2, "xn--3hcrj9c": _2, "\u0B2D\u0B3E\u0B30\u0B24": _2, "xn--45br5cyl": _2, "\u09AD\u09BE\u09F0\u09A4": _2, "xn--h2breg3eve": _2, "\u092D\u093E\u0930\u0924\u092E\u094D": _2, "xn--h2brj9c8c": _2, "\u092D\u093E\u0930\u094B\u0924": _2, "xn--mgbgu82a": _2, "\u0680\u0627\u0631\u062A": _2, "xn--rvc1e0am3e": _2, "\u0D2D\u0D3E\u0D30\u0D24\u0D02": _2, "xn--h2brj9c": _2, "\u092D\u093E\u0930\u0924": _2, "xn--mgbbh1a": _2, "\u0628\u0627\u0631\u062A": _2, "xn--mgbbh1a71e": _2, "\u0628\u06BE\u0627\u0631\u062A": _2, "xn--fpcrj9c3d": _2, "\u0C2D\u0C3E\u0C30\u0C24\u0C4D": _2, "xn--gecrj9c": _2, "\u0AAD\u0ABE\u0AB0\u0AA4": _2, "xn--s9brj9c": _2, "\u0A2D\u0A3E\u0A30\u0A24": _2, "xn--45brj9c": _2, "\u09AD\u09BE\u09B0\u09A4": _2, "xn--xkc2dl3a5ee0h": _2, "\u0B87\u0BA8\u0BCD\u0BA4\u0BBF\u0BAF\u0BBE": _2, "xn--mgba3a4f16a": _2, "\u0627\u06CC\u0631\u0627\u0646": _2, "xn--mgba3a4fra": _2, "\u0627\u064A\u0631\u0627\u0646": _2, "xn--mgbtx2b": _2, "\u0639\u0631\u0627\u0642": _2, "xn--mgbayh7gpa": _2, "\u0627\u0644\u0627\u0631\u062F\u0646": _2, "xn--3e0b707e": _2, "\uD55C\uAD6D": _2, "xn--80ao21a": _2, "\u049B\u0430\u0437": _2, "xn--q7ce6a": _2, "\u0EA5\u0EB2\u0EA7": _2, "xn--fzc2c9e2c": _2, "\u0DBD\u0D82\u0D9A\u0DCF": _2, "xn--xkc2al3hye2a": _2, "\u0B87\u0BB2\u0B99\u0BCD\u0B95\u0BC8": _2, "xn--mgbc0a9azcg": _2, "\u0627\u0644\u0645\u063A\u0631\u0628": _2, "xn--d1alf": _2, "\u043C\u043A\u0434": _2, "xn--l1acc": _2, "\u043C\u043E\u043D": _2, "xn--mix891f": _2, "\u6FB3\u9580": _2, "xn--mix082f": _2, "\u6FB3\u95E8": _2, "xn--mgbx4cd0ab": _2, "\u0645\u0644\u064A\u0633\u064A\u0627": _2, "xn--mgb9awbf": _2, "\u0639\u0645\u0627\u0646": _2, "xn--mgbai9azgqp6j": _2, "\u067E\u0627\u06A9\u0633\u062A\u0627\u0646": _2, "xn--mgbai9a5eva00b": _2, "\u067E\u0627\u0643\u0633\u062A\u0627\u0646": _2, "xn--ygbi2ammx": _2, "\u0641\u0644\u0633\u0637\u064A\u0646": _2, "xn--90a3ac": [1, { "xn--80au": _2, "xn--90azh": _2, "xn--d1at": _2, "xn--c1avg": _2, "xn--o1ac": _2, "xn--o1ach": _2 }], "\u0441\u0440\u0431": [1, { "\u0430\u043A": _2, "\u043E\u0431\u0440": _2, "\u043E\u0434": _2, "\u043E\u0440\u0433": _2, "\u043F\u0440": _2, "\u0443\u043F\u0440": _2 }], "xn--p1ai": _2, "\u0440\u0444": _2, "xn--wgbl6a": _2, "\u0642\u0637\u0631": _2, "xn--mgberp4a5d4ar": _2, "\u0627\u0644\u0633\u0639\u0648\u062F\u064A\u0629": _2, "xn--mgberp4a5d4a87g": _2, "\u0627\u0644\u0633\u0639\u0648\u062F\u06CC\u0629": _2, "xn--mgbqly7c0a67fbc": _2, "\u0627\u0644\u0633\u0639\u0648\u062F\u06CC\u06C3": _2, "xn--mgbqly7cvafr": _2, "\u0627\u0644\u0633\u0639\u0648\u062F\u064A\u0647": _2, "xn--mgbpl2fh": _2, "\u0633\u0648\u062F\u0627\u0646": _2, "xn--yfro4i67o": _2, "\u65B0\u52A0\u5761": _2, "xn--clchc0ea0b2g2a9gcd": _2, "\u0B9A\u0BBF\u0B99\u0BCD\u0B95\u0BAA\u0BCD\u0BAA\u0BC2\u0BB0\u0BCD": _2, "xn--ogbpf8fl": _2, "\u0633\u0648\u0631\u064A\u0629": _2, "xn--mgbtf8fl": _2, "\u0633\u0648\u0631\u064A\u0627": _2, "xn--o3cw4h": [1, { "xn--o3cyx2a": _2, "xn--12co0c3b4eva": _2, "xn--m3ch0j3a": _2, "xn--h3cuzk1di": _2, "xn--12c1fe0br": _2, "xn--12cfi8ixb8l": _2 }], "\u0E44\u0E17\u0E22": [1, { "\u0E17\u0E2B\u0E32\u0E23": _2, "\u0E18\u0E38\u0E23\u0E01\u0E34\u0E08": _2, "\u0E40\u0E19\u0E47\u0E15": _2, "\u0E23\u0E31\u0E10\u0E1A\u0E32\u0E25": _2, "\u0E28\u0E36\u0E01\u0E29\u0E32": _2, "\u0E2D\u0E07\u0E04\u0E4C\u0E01\u0E23": _2 }], "xn--pgbs0dh": _2, "\u062A\u0648\u0646\u0633": _2, "xn--kpry57d": _2, "\u53F0\u7063": _2, "xn--kprw13d": _2, "\u53F0\u6E7E": _2, "xn--nnx388a": _2, "\u81FA\u7063": _2, "xn--j1amh": _2, "\u0443\u043A\u0440": _2, "xn--mgb2ddes": _2, "\u0627\u0644\u064A\u0645\u0646": _2, "xxx": _2, "ye": _5, "za": [0, { "ac": _2, "agric": _2, "alt": _2, "co": _2, "edu": _2, "gov": _2, "grondar": _2, "law": _2, "mil": _2, "net": _2, "ngo": _2, "nic": _2, "nis": _2, "nom": _2, "org": _2, "school": _2, "tm": _2, "web": _2 }], "zm": [1, { "ac": _2, "biz": _2, "co": _2, "com": _2, "edu": _2, "gov": _2, "info": _2, "mil": _2, "net": _2, "org": _2, "sch": _2 }], "zw": [1, { "ac": _2, "co": _2, "gov": _2, "mil": _2, "org": _2 }], "aaa": _2, "aarp": _2, "abb": _2, "abbott": _2, "abbvie": _2, "abc": _2, "able": _2, "abogado": _2, "abudhabi": _2, "academy": [1, { "official": _3 }], "accenture": _2, "accountant": _2, "accountants": _2, "aco": _2, "actor": _2, "ads": _2, "adult": _2, "aeg": _2, "aetna": _2, "afl": _2, "africa": _2, "agakhan": _2, "agency": _2, "aig": _2, "airbus": _2, "airforce": _2, "airtel": _2, "akdn": _2, "alibaba": _2, "alipay": _2, "allfinanz": _2, "allstate": _2, "ally": _2, "alsace": _2, "alstom": _2, "amazon": _2, "americanexpress": _2, "americanfamily": _2, "amex": _2, "amfam": _2, "amica": _2, "amsterdam": _2, "analytics": _2, "android": _2, "anquan": _2, "anz": _2, "aol": _2, "apartments": _2, "app": [1, { "adaptable": _3, "aiven": _3, "beget": _6, "brave": _7, "clerk": _3, "clerkstage": _3, "wnext": _3, "csb": [2, { "preview": _3 }], "convex": _3, "deta": _3, "ondigitalocean": _3, "easypanel": _3, "encr": [2, { "frontend": _3 }], "evervault": _8, "expo": [2, { "staging": _3 }], "edgecompute": _3, "on-fleek": _3, "flutterflow": _3, "e2b": _3, "framer": _3, "github": _3, "hosted": _6, "run": [0, { "*": _3, "mtls": _6 }], "web": _3, "hasura": _3, "botdash": _3, "loginline": _3, "lovable": _3, "luyani": _3, "medusajs": _3, "messerli": _3, "netfy": _3, "netlify": _3, "ngrok": _3, "ngrok-free": _3, "developer": _6, "noop": _3, "northflank": _6, "upsun": _6, "railway": [0, { "up": _3 }], "replit": _9, "nyat": _3, "snowflake": [0, { "*": _3, "privatelink": _6 }], "streamlit": _3, "storipress": _3, "telebit": _3, "typedream": _3, "vercel": _3, "bookonline": _3, "wdh": _3, "windsurf": _3, "zeabur": _3, "zerops": _6 }], "apple": _2, "aquarelle": _2, "arab": _2, "aramco": _2, "archi": _2, "army": _2, "art": _2, "arte": _2, "asda": _2, "associates": _2, "athleta": _2, "attorney": _2, "auction": _2, "audi": _2, "audible": _2, "audio": _2, "auspost": _2, "author": _2, "auto": _2, "autos": _2, "aws": [1, { "on": [0, { "af-south-1": _11, "ap-east-1": _11, "ap-northeast-1": _11, "ap-northeast-2": _11, "ap-northeast-3": _11, "ap-south-1": _11, "ap-south-2": _11, "ap-southeast-1": _11, "ap-southeast-2": _11, "ap-southeast-3": _11, "ap-southeast-4": _11, "ap-southeast-5": _11, "ca-central-1": _11, "ca-west-1": _11, "eu-central-1": _11, "eu-central-2": _11, "eu-north-1": _11, "eu-south-1": _11, "eu-south-2": _11, "eu-west-1": _11, "eu-west-2": _11, "eu-west-3": _11, "il-central-1": _11, "me-central-1": _11, "me-south-1": _11, "sa-east-1": _11, "us-east-1": _11, "us-east-2": _11, "us-west-1": _11, "us-west-2": _11, "us-gov-east-1": _12, "us-gov-west-1": _12 }], "sagemaker": [0, { "ap-northeast-1": _14, "ap-northeast-2": _14, "ap-south-1": _14, "ap-southeast-1": _14, "ap-southeast-2": _14, "ca-central-1": _16, "eu-central-1": _14, "eu-west-1": _14, "eu-west-2": _14, "us-east-1": _16, "us-east-2": _16, "us-west-2": _16, "af-south-1": _13, "ap-east-1": _13, "ap-northeast-3": _13, "ap-south-2": _15, "ap-southeast-3": _13, "ap-southeast-4": _15, "ca-west-1": [0, { "notebook": _3, "notebook-fips": _3 }], "eu-central-2": _13, "eu-north-1": _13, "eu-south-1": _13, "eu-south-2": _13, "eu-west-3": _13, "il-central-1": _13, "me-central-1": _13, "me-south-1": _13, "sa-east-1": _13, "us-gov-east-1": _17, "us-gov-west-1": _17, "us-west-1": [0, { "notebook": _3, "notebook-fips": _3, "studio": _3 }], "experiments": _6 }], "repost": [0, { "private": _6 }] }], "axa": _2, "azure": _2, "baby": _2, "baidu": _2, "banamex": _2, "band": _2, "bank": _2, "bar": _2, "barcelona": _2, "barclaycard": _2, "barclays": _2, "barefoot": _2, "bargains": _2, "baseball": _2, "basketball": [1, { "aus": _3, "nz": _3 }], "bauhaus": _2, "bayern": _2, "bbc": _2, "bbt": _2, "bbva": _2, "bcg": _2, "bcn": _2, "beats": _2, "beauty": _2, "beer": _2, "berlin": _2, "best": _2, "bestbuy": _2, "bet": _2, "bharti": _2, "bible": _2, "bid": _2, "bike": _2, "bing": _2, "bingo": _2, "bio": _2, "black": _2, "blackfriday": _2, "blockbuster": _2, "blog": _2, "bloomberg": _2, "blue": _2, "bms": _2, "bmw": _2, "bnpparibas": _2, "boats": _2, "boehringer": _2, "bofa": _2, "bom": _2, "bond": _2, "boo": _2, "book": _2, "booking": _2, "bosch": _2, "bostik": _2, "boston": _2, "bot": _2, "boutique": _2, "box": _2, "bradesco": _2, "bridgestone": _2, "broadway": _2, "broker": _2, "brother": _2, "brussels": _2, "build": [1, { "v0": _3, "windsurf": _3 }], "builders": [1, { "cloudsite": _3 }], "business": _19, "buy": _2, "buzz": _2, "bzh": _2, "cab": _2, "cafe": _2, "cal": _2, "call": _2, "calvinklein": _2, "cam": _2, "camera": _2, "camp": [1, { "emf": [0, { "at": _3 }] }], "canon": _2, "capetown": _2, "capital": _2, "capitalone": _2, "car": _2, "caravan": _2, "cards": _2, "care": _2, "career": _2, "careers": _2, "cars": _2, "casa": [1, { "nabu": [0, { "ui": _3 }] }], "case": _2, "cash": _2, "casino": _2, "catering": _2, "catholic": _2, "cba": _2, "cbn": _2, "cbre": _2, "center": _2, "ceo": _2, "cern": _2, "cfa": _2, "cfd": _2, "chanel": _2, "channel": _2, "charity": _2, "chase": _2, "chat": _2, "cheap": _2, "chintai": _2, "christmas": _2, "chrome": _2, "church": _2, "cipriani": _2, "circle": _2, "cisco": _2, "citadel": _2, "citi": _2, "citic": _2, "city": _2, "claims": _2, "cleaning": _2, "click": _2, "clinic": _2, "clinique": _2, "clothing": _2, "cloud": [1, { "convex": _3, "elementor": _3, "encoway": [0, { "eu": _3 }], "statics": _6, "ravendb": _3, "axarnet": [0, { "es-1": _3 }], "diadem": _3, "jelastic": [0, { "vip": _3 }], "jele": _3, "jenv-aruba": [0, { "aruba": [0, { "eur": [0, { "it1": _3 }] }], "it1": _3 }], "keliweb": [2, { "cs": _3 }], "oxa": [2, { "tn": _3, "uk": _3 }], "primetel": [2, { "uk": _3 }], "reclaim": [0, { "ca": _3, "uk": _3, "us": _3 }], "trendhosting": [0, { "ch": _3, "de": _3 }], "jotelulu": _3, "kuleuven": _3, "laravel": _3, "linkyard": _3, "magentosite": _6, "matlab": _3, "observablehq": _3, "perspecta": _3, "vapor": _3, "on-rancher": _6, "scw": [0, { "baremetal": [0, { "fr-par-1": _3, "fr-par-2": _3, "nl-ams-1": _3 }], "fr-par": [0, { "cockpit": _3, "ddl": _3, "dtwh": _3, "fnc": [2, { "functions": _3 }], "ifr": _3, "k8s": _21, "kafk": _3, "mgdb": _3, "rdb": _3, "s3": _3, "s3-website": _3, "scbl": _3, "whm": _3 }], "instances": [0, { "priv": _3, "pub": _3 }], "k8s": _3, "nl-ams": [0, { "cockpit": _3, "ddl": _3, "dtwh": _3, "ifr": _3, "k8s": _21, "kafk": _3, "mgdb": _3, "rdb": _3, "s3": _3, "s3-website": _3, "scbl": _3, "whm": _3 }], "pl-waw": [0, { "cockpit": _3, "ddl": _3, "dtwh": _3, "ifr": _3, "k8s": _21, "kafk": _3, "mgdb": _3, "rdb": _3, "s3": _3, "s3-website": _3, "scbl": _3 }], "scalebook": _3, "smartlabeling": _3 }], "servebolt": _3, "onstackit": [0, { "runs": _3 }], "trafficplex": _3, "unison-services": _3, "urown": _3, "voorloper": _3, "zap": _3 }], "club": [1, { "cloudns": _3, "jele": _3, "barsy": _3 }], "clubmed": _2, "coach": _2, "codes": [1, { "owo": _6 }], "coffee": _2, "college": _2, "cologne": _2, "commbank": _2, "community": [1, { "nog": _3, "ravendb": _3, "myforum": _3 }], "company": _2, "compare": _2, "computer": _2, "comsec": _2, "condos": _2, "construction": _2, "consulting": _2, "contact": _2, "contractors": _2, "cooking": _2, "cool": [1, { "elementor": _3, "de": _3 }], "corsica": _2, "country": _2, "coupon": _2, "coupons": _2, "courses": _2, "cpa": _2, "credit": _2, "creditcard": _2, "creditunion": _2, "cricket": _2, "crown": _2, "crs": _2, "cruise": _2, "cruises": _2, "cuisinella": _2, "cymru": _2, "cyou": _2, "dad": _2, "dance": _2, "data": _2, "date": _2, "dating": _2, "datsun": _2, "day": _2, "dclk": _2, "dds": _2, "deal": _2, "dealer": _2, "deals": _2, "degree": _2, "delivery": _2, "dell": _2, "deloitte": _2, "delta": _2, "democrat": _2, "dental": _2, "dentist": _2, "desi": _2, "design": [1, { "graphic": _3, "bss": _3 }], "dev": [1, { "12chars": _3, "myaddr": _3, "panel": _3, "lcl": _6, "lclstage": _6, "stg": _6, "stgstage": _6, "pages": _3, "r2": _3, "workers": _3, "deno": _3, "deno-staging": _3, "deta": _3, "lp": [2, { "api": _3, "objects": _3 }], "evervault": _8, "fly": _3, "githubpreview": _3, "gateway": _6, "botdash": _3, "inbrowser": _6, "is-a-good": _3, "is-a": _3, "iserv": _3, "runcontainers": _3, "localcert": [0, { "user": _6 }], "loginline": _3, "barsy": _3, "mediatech": _3, "modx": _3, "ngrok": _3, "ngrok-free": _3, "is-a-fullstack": _3, "is-cool": _3, "is-not-a": _3, "localplayer": _3, "xmit": _3, "platter-app": _3, "replit": [2, { "archer": _3, "bones": _3, "canary": _3, "global": _3, "hacker": _3, "id": _3, "janeway": _3, "kim": _3, "kira": _3, "kirk": _3, "odo": _3, "paris": _3, "picard": _3, "pike": _3, "prerelease": _3, "reed": _3, "riker": _3, "sisko": _3, "spock": _3, "staging": _3, "sulu": _3, "tarpit": _3, "teams": _3, "tucker": _3, "wesley": _3, "worf": _3 }], "crm": [0, { "d": _6, "w": _6, "wa": _6, "wb": _6, "wc": _6, "wd": _6, "we": _6, "wf": _6 }], "erp": _48, "vercel": _3, "webhare": _6, "hrsn": _3 }], "dhl": _2, "diamonds": _2, "diet": _2, "digital": [1, { "cloudapps": [2, { "london": _3 }] }], "direct": [1, { "libp2p": _3 }], "directory": _2, "discount": _2, "discover": _2, "dish": _2, "diy": _2, "dnp": _2, "docs": _2, "doctor": _2, "dog": _2, "domains": _2, "dot": _2, "download": _2, "drive": _2, "dtv": _2, "dubai": _2, "dunlop": _2, "dupont": _2, "durban": _2, "dvag": _2, "dvr": _2, "earth": _2, "eat": _2, "eco": _2, "edeka": _2, "education": _19, "email": [1, { "crisp": [0, { "on": _3 }], "tawk": _50, "tawkto": _50 }], "emerck": _2, "energy": _2, "engineer": _2, "engineering": _2, "enterprises": _2, "epson": _2, "equipment": _2, "ericsson": _2, "erni": _2, "esq": _2, "estate": [1, { "compute": _6 }], "eurovision": _2, "eus": [1, { "party": _51 }], "events": [1, { "koobin": _3, "co": _3 }], "exchange": _2, "expert": _2, "exposed": _2, "express": _2, "extraspace": _2, "fage": _2, "fail": _2, "fairwinds": _2, "faith": _2, "family": _2, "fan": _2, "fans": _2, "farm": [1, { "storj": _3 }], "farmers": _2, "fashion": _2, "fast": _2, "fedex": _2, "feedback": _2, "ferrari": _2, "ferrero": _2, "fidelity": _2, "fido": _2, "film": _2, "final": _2, "finance": _2, "financial": _19, "fire": _2, "firestone": _2, "firmdale": _2, "fish": _2, "fishing": _2, "fit": _2, "fitness": _2, "flickr": _2, "flights": _2, "flir": _2, "florist": _2, "flowers": _2, "fly": _2, "foo": _2, "food": _2, "football": _2, "ford": _2, "forex": _2, "forsale": _2, "forum": _2, "foundation": _2, "fox": _2, "free": _2, "fresenius": _2, "frl": _2, "frogans": _2, "frontier": _2, "ftr": _2, "fujitsu": _2, "fun": _2, "fund": _2, "furniture": _2, "futbol": _2, "fyi": _2, "gal": _2, "gallery": _2, "gallo": _2, "gallup": _2, "game": _2, "games": [1, { "pley": _3, "sheezy": _3 }], "gap": _2, "garden": _2, "gay": [1, { "pages": _3 }], "gbiz": _2, "gdn": [1, { "cnpy": _3 }], "gea": _2, "gent": _2, "genting": _2, "george": _2, "ggee": _2, "gift": _2, "gifts": _2, "gives": _2, "giving": _2, "glass": _2, "gle": _2, "global": [1, { "appwrite": _3 }], "globo": _2, "gmail": _2, "gmbh": _2, "gmo": _2, "gmx": _2, "godaddy": _2, "gold": _2, "goldpoint": _2, "golf": _2, "goo": _2, "goodyear": _2, "goog": [1, { "cloud": _3, "translate": _3, "usercontent": _6 }], "google": _2, "gop": _2, "got": _2, "grainger": _2, "graphics": _2, "gratis": _2, "green": _2, "gripe": _2, "grocery": _2, "group": [1, { "discourse": _3 }], "gucci": _2, "guge": _2, "guide": _2, "guitars": _2, "guru": _2, "hair": _2, "hamburg": _2, "hangout": _2, "haus": _2, "hbo": _2, "hdfc": _2, "hdfcbank": _2, "health": [1, { "hra": _3 }], "healthcare": _2, "help": _2, "helsinki": _2, "here": _2, "hermes": _2, "hiphop": _2, "hisamitsu": _2, "hitachi": _2, "hiv": _2, "hkt": _2, "hockey": _2, "holdings": _2, "holiday": _2, "homedepot": _2, "homegoods": _2, "homes": _2, "homesense": _2, "honda": _2, "horse": _2, "hospital": _2, "host": [1, { "cloudaccess": _3, "freesite": _3, "easypanel": _3, "fastvps": _3, "myfast": _3, "tempurl": _3, "wpmudev": _3, "iserv": _3, "jele": _3, "mircloud": _3, "wp2": _3, "half": _3 }], "hosting": [1, { "opencraft": _3 }], "hot": _2, "hotel": _2, "hotels": _2, "hotmail": _2, "house": _2, "how": _2, "hsbc": _2, "hughes": _2, "hyatt": _2, "hyundai": _2, "ibm": _2, "icbc": _2, "ice": _2, "icu": _2, "ieee": _2, "ifm": _2, "ikano": _2, "imamat": _2, "imdb": _2, "immo": _2, "immobilien": _2, "inc": _2, "industries": _2, "infiniti": _2, "ing": _2, "ink": _2, "institute": _2, "insurance": _2, "insure": _2, "international": _2, "intuit": _2, "investments": _2, "ipiranga": _2, "irish": _2, "ismaili": _2, "ist": _2, "istanbul": _2, "itau": _2, "itv": _2, "jaguar": _2, "java": _2, "jcb": _2, "jeep": _2, "jetzt": _2, "jewelry": _2, "jio": _2, "jll": _2, "jmp": _2, "jnj": _2, "joburg": _2, "jot": _2, "joy": _2, "jpmorgan": _2, "jprs": _2, "juegos": _2, "juniper": _2, "kaufen": _2, "kddi": _2, "kerryhotels": _2, "kerryproperties": _2, "kfh": _2, "kia": _2, "kids": _2, "kim": _2, "kindle": _2, "kitchen": _2, "kiwi": _2, "koeln": _2, "komatsu": _2, "kosher": _2, "kpmg": _2, "kpn": _2, "krd": [1, { "co": _3, "edu": _3 }], "kred": _2, "kuokgroup": _2, "kyoto": _2, "lacaixa": _2, "lamborghini": _2, "lamer": _2, "land": _2, "landrover": _2, "lanxess": _2, "lasalle": _2, "lat": _2, "latino": _2, "latrobe": _2, "law": _2, "lawyer": _2, "lds": _2, "lease": _2, "leclerc": _2, "lefrak": _2, "legal": _2, "lego": _2, "lexus": _2, "lgbt": _2, "lidl": _2, "life": _2, "lifeinsurance": _2, "lifestyle": _2, "lighting": _2, "like": _2, "lilly": _2, "limited": _2, "limo": _2, "lincoln": _2, "link": [1, { "myfritz": _3, "cyon": _3, "dweb": _6, "inbrowser": _6, "nftstorage": _59, "mypep": _3, "storacha": _59, "w3s": _59 }], "live": [1, { "aem": _3, "hlx": _3, "ewp": _6 }], "living": _2, "llc": _2, "llp": _2, "loan": _2, "loans": _2, "locker": _2, "locus": _2, "lol": [1, { "omg": _3 }], "london": _2, "lotte": _2, "lotto": _2, "love": _2, "lpl": _2, "lplfinancial": _2, "ltd": _2, "ltda": _2, "lundbeck": _2, "luxe": _2, "luxury": _2, "madrid": _2, "maif": _2, "maison": _2, "makeup": _2, "man": _2, "management": _2, "mango": _2, "map": _2, "market": _2, "marketing": _2, "markets": _2, "marriott": _2, "marshalls": _2, "mattel": _2, "mba": _2, "mckinsey": _2, "med": _2, "media": _60, "meet": _2, "melbourne": _2, "meme": _2, "memorial": _2, "men": _2, "menu": [1, { "barsy": _3, "barsyonline": _3 }], "merck": _2, "merckmsd": _2, "miami": _2, "microsoft": _2, "mini": _2, "mint": _2, "mit": _2, "mitsubishi": _2, "mlb": _2, "mls": _2, "mma": _2, "mobile": _2, "moda": _2, "moe": _2, "moi": _2, "mom": _2, "monash": _2, "money": _2, "monster": _2, "mormon": _2, "mortgage": _2, "moscow": _2, "moto": _2, "motorcycles": _2, "mov": _2, "movie": _2, "msd": _2, "mtn": _2, "mtr": _2, "music": _2, "nab": _2, "nagoya": _2, "navy": _2, "nba": _2, "nec": _2, "netbank": _2, "netflix": _2, "network": [1, { "aem": _3, "alces": _6, "co": _3, "arvo": _3, "azimuth": _3, "tlon": _3 }], "neustar": _2, "new": _2, "news": [1, { "noticeable": _3 }], "next": _2, "nextdirect": _2, "nexus": _2, "nfl": _2, "ngo": _2, "nhk": _2, "nico": _2, "nike": _2, "nikon": _2, "ninja": _2, "nissan": _2, "nissay": _2, "nokia": _2, "norton": _2, "now": _2, "nowruz": _2, "nowtv": _2, "nra": _2, "nrw": _2, "ntt": _2, "nyc": _2, "obi": _2, "observer": _2, "office": _2, "okinawa": _2, "olayan": _2, "olayangroup": _2, "ollo": _2, "omega": _2, "one": [1, { "kin": _6, "service": _3 }], "ong": [1, { "obl": _3 }], "onl": _2, "online": [1, { "eero": _3, "eero-stage": _3, "websitebuilder": _3, "barsy": _3 }], "ooo": _2, "open": _2, "oracle": _2, "orange": [1, { "tech": _3 }], "organic": _2, "origins": _2, "osaka": _2, "otsuka": _2, "ott": _2, "ovh": [1, { "nerdpol": _3 }], "page": [1, { "aem": _3, "hlx": _3, "translated": _3, "codeberg": _3, "heyflow": _3, "prvcy": _3, "rocky": _3, "pdns": _3, "plesk": _3 }], "panasonic": _2, "paris": _2, "pars": _2, "partners": _2, "parts": _2, "party": _2, "pay": _2, "pccw": _2, "pet": _2, "pfizer": _2, "pharmacy": _2, "phd": _2, "philips": _2, "phone": _2, "photo": _2, "photography": _2, "photos": _60, "physio": _2, "pics": _2, "pictet": _2, "pictures": [1, { "1337": _3 }], "pid": _2, "pin": _2, "ping": _2, "pink": _2, "pioneer": _2, "pizza": [1, { "ngrok": _3 }], "place": _19, "play": _2, "playstation": _2, "plumbing": _2, "plus": _2, "pnc": _2, "pohl": _2, "poker": _2, "politie": _2, "porn": _2, "praxi": _2, "press": _2, "prime": _2, "prod": _2, "productions": _2, "prof": _2, "progressive": _2, "promo": _2, "properties": _2, "property": _2, "protection": _2, "pru": _2, "prudential": _2, "pub": [1, { "id": _6, "kin": _6, "barsy": _3 }], "pwc": _2, "qpon": _2, "quebec": _2, "quest": _2, "racing": _2, "radio": _2, "read": _2, "realestate": _2, "realtor": _2, "realty": _2, "recipes": _2, "red": _2, "redstone": _2, "redumbrella": _2, "rehab": _2, "reise": _2, "reisen": _2, "reit": _2, "reliance": _2, "ren": _2, "rent": _2, "rentals": _2, "repair": _2, "report": _2, "republican": _2, "rest": _2, "restaurant": _2, "review": _2, "reviews": [1, { "aem": _3 }], "rexroth": _2, "rich": _2, "richardli": _2, "ricoh": _2, "ril": _2, "rio": _2, "rip": [1, { "clan": _3 }], "rocks": [1, { "myddns": _3, "stackit": _3, "lima-city": _3, "webspace": _3 }], "rodeo": _2, "rogers": _2, "room": _2, "rsvp": _2, "rugby": _2, "ruhr": _2, "run": [1, { "appwrite": _6, "development": _3, "ravendb": _3, "liara": [2, { "iran": _3 }], "servers": _3, "lovable": _3, "build": _6, "code": _6, "database": _6, "migration": _6, "onporter": _3, "repl": _3, "stackit": _3, "val": _48, "vercel": _3, "wix": _3 }], "rwe": _2, "ryukyu": _2, "saarland": _2, "safe": _2, "safety": _2, "sakura": _2, "sale": _2, "salon": _2, "samsclub": _2, "samsung": _2, "sandvik": _2, "sandvikcoromant": _2, "sanofi": _2, "sap": _2, "sarl": _2, "sas": _2, "save": _2, "saxo": _2, "sbi": _2, "sbs": _2, "scb": _2, "schaeffler": _2, "schmidt": _2, "scholarships": _2, "school": _2, "schule": _2, "schwarz": _2, "science": _2, "scot": [1, { "gov": [2, { "service": _3 }] }], "search": _2, "seat": _2, "secure": _2, "security": _2, "seek": _2, "select": _2, "sener": _2, "services": [1, { "loginline": _3 }], "seven": _2, "sew": _2, "sex": _2, "sexy": _2, "sfr": _2, "shangrila": _2, "sharp": _2, "shell": _2, "shia": _2, "shiksha": _2, "shoes": _2, "shop": [1, { "base": _3, "hoplix": _3, "barsy": _3, "barsyonline": _3, "shopware": _3 }], "shopping": _2, "shouji": _2, "show": _2, "silk": _2, "sina": _2, "singles": _2, "site": [1, { "square": _3, "canva": _22, "cloudera": _6, "convex": _3, "cyon": _3, "caffeine": _3, "fastvps": _3, "figma": _3, "preview": _3, "heyflow": _3, "jele": _3, "jouwweb": _3, "loginline": _3, "barsy": _3, "notion": _3, "omniwe": _3, "opensocial": _3, "madethis": _3, "platformsh": _6, "tst": _6, "byen": _3, "srht": _3, "novecore": _3, "cpanel": _3, "wpsquared": _3 }], "ski": _2, "skin": _2, "sky": _2, "skype": _2, "sling": _2, "smart": _2, "smile": _2, "sncf": _2, "soccer": _2, "social": _2, "softbank": _2, "software": _2, "sohu": _2, "solar": _2, "solutions": _2, "song": _2, "sony": _2, "soy": _2, "spa": _2, "space": [1, { "myfast": _3, "heiyu": _3, "hf": [2, { "static": _3 }], "app-ionos": _3, "project": _3, "uber": _3, "xs4all": _3 }], "sport": _2, "spot": _2, "srl": _2, "stada": _2, "staples": _2, "star": _2, "statebank": _2, "statefarm": _2, "stc": _2, "stcgroup": _2, "stockholm": _2, "storage": _2, "store": [1, { "barsy": _3, "sellfy": _3, "shopware": _3, "storebase": _3 }], "stream": _2, "studio": _2, "study": _2, "style": _2, "sucks": _2, "supplies": _2, "supply": _2, "support": [1, { "barsy": _3 }], "surf": _2, "surgery": _2, "suzuki": _2, "swatch": _2, "swiss": _2, "sydney": _2, "systems": [1, { "knightpoint": _3 }], "tab": _2, "taipei": _2, "talk": _2, "taobao": _2, "target": _2, "tatamotors": _2, "tatar": _2, "tattoo": _2, "tax": _2, "taxi": _2, "tci": _2, "tdk": _2, "team": [1, { "discourse": _3, "jelastic": _3 }], "tech": [1, { "cleverapps": _3 }], "technology": _19, "temasek": _2, "tennis": _2, "teva": _2, "thd": _2, "theater": _2, "theatre": _2, "tiaa": _2, "tickets": _2, "tienda": _2, "tips": _2, "tires": _2, "tirol": _2, "tjmaxx": _2, "tjx": _2, "tkmaxx": _2, "tmall": _2, "today": [1, { "prequalifyme": _3 }], "tokyo": _2, "tools": [1, { "addr": _47, "myaddr": _3 }], "top": [1, { "ntdll": _3, "wadl": _6 }], "toray": _2, "toshiba": _2, "total": _2, "tours": _2, "town": _2, "toyota": _2, "toys": _2, "trade": _2, "trading": _2, "training": _2, "travel": _2, "travelers": _2, "travelersinsurance": _2, "trust": _2, "trv": _2, "tube": _2, "tui": _2, "tunes": _2, "tushu": _2, "tvs": _2, "ubank": _2, "ubs": _2, "unicom": _2, "university": _2, "uno": _2, "uol": _2, "ups": _2, "vacations": _2, "vana": _2, "vanguard": _2, "vegas": _2, "ventures": _2, "verisign": _2, "versicherung": _2, "vet": _2, "viajes": _2, "video": _2, "vig": _2, "viking": _2, "villas": _2, "vin": _2, "vip": [1, { "hidns": _3 }], "virgin": _2, "visa": _2, "vision": _2, "viva": _2, "vivo": _2, "vlaanderen": _2, "vodka": _2, "volvo": _2, "vote": _2, "voting": _2, "voto": _2, "voyage": _2, "wales": _2, "walmart": _2, "walter": _2, "wang": _2, "wanggou": _2, "watch": _2, "watches": _2, "weather": _2, "weatherchannel": _2, "webcam": _2, "weber": _2, "website": _60, "wed": _2, "wedding": _2, "weibo": _2, "weir": _2, "whoswho": _2, "wien": _2, "wiki": _60, "williamhill": _2, "win": _2, "windows": _2, "wine": _2, "winners": _2, "wme": _2, "wolterskluwer": _2, "woodside": _2, "work": _2, "works": _2, "world": _2, "wow": _2, "wtc": _2, "wtf": _2, "xbox": _2, "xerox": _2, "xihuan": _2, "xin": _2, "xn--11b4c3d": _2, "\u0915\u0949\u092E": _2, "xn--1ck2e1b": _2, "\u30BB\u30FC\u30EB": _2, "xn--1qqw23a": _2, "\u4F5B\u5C71": _2, "xn--30rr7y": _2, "\u6148\u5584": _2, "xn--3bst00m": _2, "\u96C6\u56E2": _2, "xn--3ds443g": _2, "\u5728\u7EBF": _2, "xn--3pxu8k": _2, "\u70B9\u770B": _2, "xn--42c2d9a": _2, "\u0E04\u0E2D\u0E21": _2, "xn--45q11c": _2, "\u516B\u5366": _2, "xn--4gbrim": _2, "\u0645\u0648\u0642\u0639": _2, "xn--55qw42g": _2, "\u516C\u76CA": _2, "xn--55qx5d": _2, "\u516C\u53F8": _2, "xn--5su34j936bgsg": _2, "\u9999\u683C\u91CC\u62C9": _2, "xn--5tzm5g": _2, "\u7F51\u7AD9": _2, "xn--6frz82g": _2, "\u79FB\u52A8": _2, "xn--6qq986b3xl": _2, "\u6211\u7231\u4F60": _2, "xn--80adxhks": _2, "\u043C\u043E\u0441\u043A\u0432\u0430": _2, "xn--80aqecdr1a": _2, "\u043A\u0430\u0442\u043E\u043B\u0438\u043A": _2, "xn--80asehdb": _2, "\u043E\u043D\u043B\u0430\u0439\u043D": _2, "xn--80aswg": _2, "\u0441\u0430\u0439\u0442": _2, "xn--8y0a063a": _2, "\u8054\u901A": _2, "xn--9dbq2a": _2, "\u05E7\u05D5\u05DD": _2, "xn--9et52u": _2, "\u65F6\u5C1A": _2, "xn--9krt00a": _2, "\u5FAE\u535A": _2, "xn--b4w605ferd": _2, "\u6DE1\u9A6C\u9521": _2, "xn--bck1b9a5dre4c": _2, "\u30D5\u30A1\u30C3\u30B7\u30E7\u30F3": _2, "xn--c1avg": _2, "\u043E\u0440\u0433": _2, "xn--c2br7g": _2, "\u0928\u0947\u091F": _2, "xn--cck2b3b": _2, "\u30B9\u30C8\u30A2": _2, "xn--cckwcxetd": _2, "\u30A2\u30DE\u30BE\u30F3": _2, "xn--cg4bki": _2, "\uC0BC\uC131": _2, "xn--czr694b": _2, "\u5546\u6807": _2, "xn--czrs0t": _2, "\u5546\u5E97": _2, "xn--czru2d": _2, "\u5546\u57CE": _2, "xn--d1acj3b": _2, "\u0434\u0435\u0442\u0438": _2, "xn--eckvdtc9d": _2, "\u30DD\u30A4\u30F3\u30C8": _2, "xn--efvy88h": _2, "\u65B0\u95FB": _2, "xn--fct429k": _2, "\u5BB6\u96FB": _2, "xn--fhbei": _2, "\u0643\u0648\u0645": _2, "xn--fiq228c5hs": _2, "\u4E2D\u6587\u7F51": _2, "xn--fiq64b": _2, "\u4E2D\u4FE1": _2, "xn--fjq720a": _2, "\u5A31\u4E50": _2, "xn--flw351e": _2, "\u8C37\u6B4C": _2, "xn--fzys8d69uvgm": _2, "\u96FB\u8A0A\u76C8\u79D1": _2, "xn--g2xx48c": _2, "\u8D2D\u7269": _2, "xn--gckr3f0f": _2, "\u30AF\u30E9\u30A6\u30C9": _2, "xn--gk3at1e": _2, "\u901A\u8CA9": _2, "xn--hxt814e": _2, "\u7F51\u5E97": _2, "xn--i1b6b1a6a2e": _2, "\u0938\u0902\u0917\u0920\u0928": _2, "xn--imr513n": _2, "\u9910\u5385": _2, "xn--io0a7i": _2, "\u7F51\u7EDC": _2, "xn--j1aef": _2, "\u043A\u043E\u043C": _2, "xn--jlq480n2rg": _2, "\u4E9A\u9A6C\u900A": _2, "xn--jvr189m": _2, "\u98DF\u54C1": _2, "xn--kcrx77d1x4a": _2, "\u98DE\u5229\u6D66": _2, "xn--kput3i": _2, "\u624B\u673A": _2, "xn--mgba3a3ejt": _2, "\u0627\u0631\u0627\u0645\u0643\u0648": _2, "xn--mgba7c0bbn0a": _2, "\u0627\u0644\u0639\u0644\u064A\u0627\u0646": _2, "xn--mgbab2bd": _2, "\u0628\u0627\u0632\u0627\u0631": _2, "xn--mgbca7dzdo": _2, "\u0627\u0628\u0648\u0638\u0628\u064A": _2, "xn--mgbi4ecexp": _2, "\u0643\u0627\u062B\u0648\u0644\u064A\u0643": _2, "xn--mgbt3dhd": _2, "\u0647\u0645\u0631\u0627\u0647": _2, "xn--mk1bu44c": _2, "\uB2F7\uCEF4": _2, "xn--mxtq1m": _2, "\u653F\u5E9C": _2, "xn--ngbc5azd": _2, "\u0634\u0628\u0643\u0629": _2, "xn--ngbe9e0a": _2, "\u0628\u064A\u062A\u0643": _2, "xn--ngbrx": _2, "\u0639\u0631\u0628": _2, "xn--nqv7f": _2, "\u673A\u6784": _2, "xn--nqv7fs00ema": _2, "\u7EC4\u7EC7\u673A\u6784": _2, "xn--nyqy26a": _2, "\u5065\u5EB7": _2, "xn--otu796d": _2, "\u62DB\u8058": _2, "xn--p1acf": [1, { "xn--90amc": _3, "xn--j1aef": _3, "xn--j1ael8b": _3, "xn--h1ahn": _3, "xn--j1adp": _3, "xn--c1avg": _3, "xn--80aaa0cvac": _3, "xn--h1aliz": _3, "xn--90a1af": _3, "xn--41a": _3 }], "\u0440\u0443\u0441": [1, { "\u0431\u0438\u0437": _3, "\u043A\u043E\u043C": _3, "\u043A\u0440\u044B\u043C": _3, "\u043C\u0438\u0440": _3, "\u043C\u0441\u043A": _3, "\u043E\u0440\u0433": _3, "\u0441\u0430\u043C\u0430\u0440\u0430": _3, "\u0441\u043E\u0447\u0438": _3, "\u0441\u043F\u0431": _3, "\u044F": _3 }], "xn--pssy2u": _2, "\u5927\u62FF": _2, "xn--q9jyb4c": _2, "\u307F\u3093\u306A": _2, "xn--qcka1pmc": _2, "\u30B0\u30FC\u30B0\u30EB": _2, "xn--rhqv96g": _2, "\u4E16\u754C": _2, "xn--rovu88b": _2, "\u66F8\u7C4D": _2, "xn--ses554g": _2, "\u7F51\u5740": _2, "xn--t60b56a": _2, "\uB2F7\uB137": _2, "xn--tckwe": _2, "\u30B3\u30E0": _2, "xn--tiq49xqyj": _2, "\u5929\u4E3B\u6559": _2, "xn--unup4y": _2, "\u6E38\u620F": _2, "xn--vermgensberater-ctb": _2, "verm\xF6gensberater": _2, "xn--vermgensberatung-pwb": _2, "verm\xF6gensberatung": _2, "xn--vhquv": _2, "\u4F01\u4E1A": _2, "xn--vuq861b": _2, "\u4FE1\u606F": _2, "xn--w4r85el8fhu5dnra": _2, "\u5609\u91CC\u5927\u9152\u5E97": _2, "xn--w4rs40l": _2, "\u5609\u91CC": _2, "xn--xhq521b": _2, "\u5E7F\u4E1C": _2, "xn--zfr164b": _2, "\u653F\u52A1": _2, "xyz": [1, { "botdash": _3, "telebit": _6 }], "yachts": _2, "yahoo": _2, "yamaxun": _2, "yandex": _2, "yodobashi": _2, "yoga": _2, "yokohama": _2, "you": _2, "youtube": _2, "yun": _2, "zappos": _2, "zara": _2, "zero": _2, "zip": _2, "zone": [1, { "triton": _6, "stackit": _3, "lima": _3 }], "zuerich": _2 }];
15624
16272
  return rules2;
15625
- }();
16273
+ })();
15626
16274
 
15627
16275
  // node_modules/.pnpm/tldts@7.0.12/node_modules/tldts/dist/es6/src/suffix-trie.js
15628
16276
  function lookupInTrie(parts, trie, index, allowedMask) {