@bldrs-ai/conway 1.354.1120 → 1.355.1122

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 (45) hide show
  1. package/compiled/examples/browser-bundled.cjs +310 -294
  2. package/compiled/examples/cli-bundled.cjs +388 -369
  3. package/compiled/examples/cli-step-bundled.cjs +173 -156
  4. package/compiled/examples/validator-bundled.cjs +309 -293
  5. package/compiled/src/AP214E3_2010/ap214_geometry_extraction.js +1 -1
  6. package/compiled/src/AP214E3_2010/ap214_product_structure_extraction.d.ts.map +1 -1
  7. package/compiled/src/AP214E3_2010/ap214_scene_builder.d.ts.map +1 -1
  8. package/compiled/src/AP214E3_2010/ap214_step_external_mapping.js +2 -1
  9. package/compiled/src/AP214E3_2010/ap214_step_parser.js +2 -1
  10. package/compiled/src/compat/web-ifc/ifc_api.js +2 -2
  11. package/compiled/src/compat/web-ifc/ifc_api_proxy_ap214.d.ts.map +1 -1
  12. package/compiled/src/compat/web-ifc/ifc_api_proxy_ap214.js +3 -3
  13. package/compiled/src/compat/web-ifc/ifc_api_proxy_ifc.d.ts.map +1 -1
  14. package/compiled/src/compat/web-ifc/ifc_api_proxy_ifc.js +3 -3
  15. package/compiled/src/core/regression_capture_state.d.ts +1 -1
  16. package/compiled/src/core/regression_capture_state.d.ts.map +1 -1
  17. package/compiled/src/ifc/ifc_geometry_extraction.js +3 -3
  18. package/compiled/src/ifc/ifc_scene_builder.d.ts.map +1 -1
  19. package/compiled/src/ifc/ifc_step_external_mapping.js +2 -1
  20. package/compiled/src/ifc/ifc_step_parser.js +2 -1
  21. package/compiled/src/indexing/index_set_constants.js +2 -1
  22. package/compiled/src/logging/logger.js +2 -1
  23. package/compiled/src/parsing/char_bit_set.d.ts +1 -1
  24. package/compiled/src/parsing/char_bit_set.d.ts.map +1 -1
  25. package/compiled/src/parsing/hex_parser.js +2 -1
  26. package/compiled/src/parsing/integer_parser.js +2 -1
  27. package/compiled/src/parsing/parsing_buffer.d.ts.map +1 -1
  28. package/compiled/src/parsing/parsing_constants.d.ts +2 -2
  29. package/compiled/src/parsing/parsing_constants.d.ts.map +1 -1
  30. package/compiled/src/parsing/parsing_constants.js +2 -1
  31. package/compiled/src/parsing/real_parser.js +2 -1
  32. package/compiled/src/step/parsing/step_attribute_map.d.ts +9 -9
  33. package/compiled/src/step/parsing/step_attribute_map.d.ts.map +1 -1
  34. package/compiled/src/step/parsing/step_attribute_map.js +2 -1
  35. package/compiled/src/step/parsing/step_comment_parser.js +2 -1
  36. package/compiled/src/step/parsing/step_entity_identifier_parser.js +2 -1
  37. package/compiled/src/step/parsing/step_enum_parser.d.ts.map +1 -1
  38. package/compiled/src/step/parsing/step_enum_parser.js +2 -1
  39. package/compiled/src/step/parsing/step_parser.js +1 -1
  40. package/compiled/src/step/parsing/step_string_parser.js +2 -1
  41. package/compiled/src/step/step_external_mapping.js +2 -1
  42. package/compiled/src/utilities/environment.js +2 -1
  43. package/compiled/src/version/version.js +1 -1
  44. package/compiled/tsconfig.tsbuildinfo +1 -1
  45. package/package.json +5 -5
@@ -15197,6 +15197,7 @@ ParsingConstants.WHITE_SPACE = whiteSpaceBuffer;
15197
15197
  ParsingConstants.WHITE_SPACE_SET = whitespaceSet;
15198
15198
  ParsingConstants.COMMA_END_BRACE = commaEndBracketBuffer;
15199
15199
  ParsingConstants.COMMA_END_SET = commaEndBracketSet;
15200
+ var parsing_constants_default = ParsingConstants;
15200
15201
 
15201
15202
  // compiled/src/parsing/parsing_dfa_4table.js
15202
15203
  var DWORDS_PER_STATE = 16;
@@ -15307,11 +15308,11 @@ var HEX_STATES;
15307
15308
  HEX_STATES2[HEX_STATES2["MAYBE_DIGIT"] = 2] = "MAYBE_DIGIT";
15308
15309
  HEX_STATES2[HEX_STATES2["EXPONENT_PREFIX"] = 3] = "EXPONENT_PREFIX";
15309
15310
  })(HEX_STATES || (HEX_STATES = {}));
15310
- var DOUBLEQUOTE = ParsingConstants.DOUBLEQUOTE;
15311
+ var DOUBLEQUOTE = parsing_constants_default.DOUBLEQUOTE;
15311
15312
  var HEX_TERMINUS_FLAGS = 1 << HEX_STATES.MAYBE_DIGIT;
15312
- var ZERO = ParsingConstants.ZERO;
15313
- var A = ParsingConstants.A;
15314
- var a = ParsingConstants.a;
15313
+ var ZERO = parsing_constants_default.ZERO;
15314
+ var A = parsing_constants_default.A;
15315
+ var a = parsing_constants_default.a;
15315
15316
  var HexParser = class extends ParsingDfa4Table {
15316
15317
  /**
15317
15318
  * Construct the DFA table for the parser.
@@ -15325,11 +15326,11 @@ var HexParser = class extends ParsingDfa4Table {
15325
15326
  if (endCursor - cursor < 3) {
15326
15327
  return;
15327
15328
  }
15328
- if (input[cursor] !== ParsingConstants.ZERO) {
15329
+ if (input[cursor] !== parsing_constants_default.ZERO) {
15329
15330
  return;
15330
15331
  }
15331
15332
  const nextValue = input[cursor + 1];
15332
- if (nextValue !== ParsingConstants.CAPITAL_X && nextValue !== ParsingConstants.LOWER_CASE_X) {
15333
+ if (nextValue !== parsing_constants_default.CAPITAL_X && nextValue !== parsing_constants_default.LOWER_CASE_X) {
15333
15334
  return;
15334
15335
  }
15335
15336
  return this.match(input, HEX_TERMINUS_FLAGS, cursor + 2, endCursor, HEX_STATES.MUST_DIGIT);
@@ -15383,6 +15384,7 @@ var HexParser = class extends ParsingDfa4Table {
15383
15384
  }
15384
15385
  };
15385
15386
  HexParser.Instance = new HexParser();
15387
+ var hex_parser_default = HexParser;
15386
15388
 
15387
15389
  // compiled/src/parsing/parsing_dfa_16table.js
15388
15390
  var DWORDS_PER_STATE2 = 32;
@@ -15521,6 +15523,7 @@ var StepAttributeMap = class extends ParsingDfa16Table {
15521
15523
  }
15522
15524
  };
15523
15525
  StepAttributeMap.Instance = new StepAttributeMap();
15526
+ var step_attribute_map_default = StepAttributeMap;
15524
15527
 
15525
15528
  // compiled/src/step/parsing/step_comment_parser.js
15526
15529
  var COMMENT_STATE;
@@ -15531,8 +15534,8 @@ var COMMENT_STATE;
15531
15534
  COMMENT_STATE2[COMMENT_STATE2["SLASH_CASE"] = 3] = "SLASH_CASE";
15532
15535
  })(COMMENT_STATE || (COMMENT_STATE = {}));
15533
15536
  var COMMENT_PARSER_TERMINUS_FLAGS = 1 << COMMENT_STATE.SLASH_CASE;
15534
- var SLASH = ParsingConstants.SLASH;
15535
- var STAR = ParsingConstants.STAR;
15537
+ var SLASH = parsing_constants_default.SLASH;
15538
+ var STAR = parsing_constants_default.STAR;
15536
15539
  var COMMENT_MINIMUM_LENGTH = 4;
15537
15540
  var COMMENT_STAR_LENGTH = 2;
15538
15541
  var StepCommentParser = class extends ParsingDfa4Table {
@@ -15558,6 +15561,7 @@ var StepCommentParser = class extends ParsingDfa4Table {
15558
15561
  }
15559
15562
  };
15560
15563
  StepCommentParser.Instance = new StepCommentParser();
15564
+ var step_comment_parser_default = StepCommentParser;
15561
15565
 
15562
15566
  // compiled/src/parsing/integer_parser.js
15563
15567
  var INTEGER_STATES;
@@ -15587,6 +15591,7 @@ var IntegerParser = class extends ParsingDfa4Table {
15587
15591
  }
15588
15592
  };
15589
15593
  IntegerParser.Instance = new IntegerParser();
15594
+ var integer_parser_default = IntegerParser;
15590
15595
 
15591
15596
  // compiled/src/parsing/real_parser.js
15592
15597
  var REAL_STATES;
@@ -15632,17 +15637,18 @@ var RealParser = class extends ParsingDfa16Table {
15632
15637
  }
15633
15638
  };
15634
15639
  RealParser.Instance = new RealParser();
15640
+ var real_parser_default = RealParser;
15635
15641
 
15636
15642
  // compiled/src/parsing/parsing_buffer.js
15637
- var WHITESPACE = ParsingConstants.WHITE_SPACE_SET;
15638
- var NEWLINE = ParsingConstants.NEWLINE;
15639
- var ZERO2 = ParsingConstants.ZERO;
15640
- var DOT = ParsingConstants.DOT;
15641
- var E = ParsingConstants.E;
15642
- var LOWER_E = ParsingConstants.LOWER_E;
15643
- var integerParser = IntegerParser.Instance;
15644
- var realParser = RealParser.Instance;
15645
- var hexParser = HexParser.Instance;
15643
+ var WHITESPACE = parsing_constants_default.WHITE_SPACE_SET;
15644
+ var NEWLINE = parsing_constants_default.NEWLINE;
15645
+ var ZERO2 = parsing_constants_default.ZERO;
15646
+ var DOT = parsing_constants_default.DOT;
15647
+ var E = parsing_constants_default.E;
15648
+ var LOWER_E = parsing_constants_default.LOWER_E;
15649
+ var integerParser = integer_parser_default.Instance;
15650
+ var realParser = real_parser_default.Instance;
15651
+ var hexParser = hex_parser_default.Instance;
15646
15652
  var RADIX_LUT_SIZE = 64;
15647
15653
  var radixLUT = new Float64Array(RADIX_LUT_SIZE);
15648
15654
  {
@@ -15891,7 +15897,7 @@ var ParsingBuffer = class {
15891
15897
  return;
15892
15898
  }
15893
15899
  let primarySign = 1;
15894
- if (input[cursor] === ParsingConstants.SIGN) {
15900
+ if (input[cursor] === parsing_constants_default.SIGN) {
15895
15901
  primarySign = -1;
15896
15902
  }
15897
15903
  let primary = this.readInteger();
@@ -16006,8 +16012,8 @@ var ParsingBuffer = class {
16006
16012
  }
16007
16013
  let firstChar = input[cursor] - ZERO2;
16008
16014
  let sign = 1;
16009
- if (firstChar === ParsingConstants.SIGN_NUM || firstChar === ParsingConstants.PLUS_NUM) {
16010
- if (firstChar === ParsingConstants.SIGN_NUM) {
16015
+ if (firstChar === parsing_constants_default.SIGN_NUM || firstChar === parsing_constants_default.PLUS_NUM) {
16016
+ if (firstChar === parsing_constants_default.SIGN_NUM) {
16011
16017
  sign = -1;
16012
16018
  }
16013
16019
  ++cursor;
@@ -16092,6 +16098,7 @@ var StepEntityIdentifierParser = class extends ParsingDfa4Table {
16092
16098
  }
16093
16099
  };
16094
16100
  StepEntityIdentifierParser.Instance = new StepEntityIdentifierParser();
16101
+ var step_entity_identifier_parser_default = StepEntityIdentifierParser;
16095
16102
 
16096
16103
  // compiled/src/step/parsing/step_enum_parser.js
16097
16104
  var ENUM_PARSER_STATE;
@@ -16120,7 +16127,7 @@ var StepEnumParser = class extends ParsingDfa4Table {
16120
16127
  if (endCursor - cursor < ENUM_MINIMUM_SIZE) {
16121
16128
  return;
16122
16129
  }
16123
- if (input[cursor] !== ParsingConstants.DOT) {
16130
+ if (input[cursor] !== parsing_constants_default.DOT) {
16124
16131
  return;
16125
16132
  }
16126
16133
  return super.match(input, ENUM_PARSER_TERMINUS_FLAGS, cursor + 1, endCursor, ENUM_PARSER_STATE.MUST_UPPER_CASE);
@@ -16133,6 +16140,7 @@ var StepEnumParser = class extends ParsingDfa4Table {
16133
16140
  }
16134
16141
  };
16135
16142
  StepEnumParser.Instance = new StepEnumParser();
16143
+ var step_enum_parser_default = StepEnumParser;
16136
16144
 
16137
16145
  // compiled/src/step/parsing/step_string_parser.js
16138
16146
  var STRING_PARSER_STATE;
@@ -16145,18 +16153,18 @@ var STRING_PARSER_STATE;
16145
16153
  STRING_PARSER_STATE2[STRING_PARSER_STATE2["SPECIAL_BSLASH"] = 5] = "SPECIAL_BSLASH";
16146
16154
  })(STRING_PARSER_STATE || (STRING_PARSER_STATE = {}));
16147
16155
  var STRING_PARSER_TERMINUS_FLAGS = 1 << STRING_PARSER_STATE.QUOTE;
16148
- var QUOTE = ParsingConstants.QUOTE;
16149
- var BSLASH = ParsingConstants.BSLASH;
16150
- var X = ParsingConstants.CAPITAL_X;
16151
- var S = ParsingConstants.CAPITAL_S;
16152
- var P = ParsingConstants.CAPITAL_P;
16153
- var A2 = ParsingConstants.A;
16154
- var I = ParsingConstants.I;
16155
- var F = ParsingConstants.F;
16156
- var TWO = ParsingConstants.ZERO + 2;
16157
- var FOUR = ParsingConstants.ZERO + 4;
16158
- var ZERO3 = ParsingConstants.ZERO;
16159
- var NINE = ParsingConstants.NINE;
16156
+ var QUOTE = parsing_constants_default.QUOTE;
16157
+ var BSLASH = parsing_constants_default.BSLASH;
16158
+ var X = parsing_constants_default.CAPITAL_X;
16159
+ var S = parsing_constants_default.CAPITAL_S;
16160
+ var P = parsing_constants_default.CAPITAL_P;
16161
+ var A2 = parsing_constants_default.A;
16162
+ var I = parsing_constants_default.I;
16163
+ var F = parsing_constants_default.F;
16164
+ var TWO = parsing_constants_default.ZERO + 2;
16165
+ var FOUR = parsing_constants_default.ZERO + 4;
16166
+ var ZERO3 = parsing_constants_default.ZERO;
16167
+ var NINE = parsing_constants_default.NINE;
16160
16168
  var decoder = new TextDecoder();
16161
16169
  var ISO8859Table = [["\xA1", "\xA2", "\xA3", "\xA4", "\xA5", "\xA6", "\xA7", "\xA8", "\xA9", "\xAA", "\xAB", "\xAC", "\xAD", "\xAE", "\xAF", "\xB0", "\xB1", "\xB2", "\xB3", "\xB4", "\xB5", "\xB6", "\xB7", "\xB8", "\xB9", "\xBA", "\xBB", "\xBC", "\xBD", "\xBE", "\xBF", "\xC0", "\xC1", "\xC2", "\xC3", "\xC4", "\xC5", "\xC6", "\xC7", "\xC8", "\xC9", "\xCA", "\xCB", "\xCC", "\xCD", "\xCE", "\xCF", "\xD0", "\xD1", "\xD2", "\xD3", "\xD4", "\xD5", "\xD6", "\xD7", "\xD8", "\xD9", "\xDA", "\xDB", "\xDC", "\xDD", "\xDE", "\xDF", "\xE0", "\xE1", "\xE2", "\xE3", "\xE4", "\xE5", "\xE6", "\xE7", "\xE8", "\xE9", "\xEA", "\xEB", "\xEC", "\xED", "\xEE", "\xEF", "\xF0", "\xF1", "\xF2", "\xF3", "\xF4", "\xF5", "\xF6", "\xF7", "\xF8", "\xF9", "\xFA", "\xFB", "\xFC", "\xFD", "\xFE"], ["\u0104", "\u02D8", "\u0141", "\xA4", "\u013D", "\u015A", "\xA7", "\xA8", "\u0160", "\u015E", "\u0164", "\u0179", "\xAD", "\u017D", "\u017B", "\xB0", "\u0105", "\u02DB", "\u0142", "\xB4", "\u013E", "\u015B", "\u02C7", "\xB8", "\u0161", "\u015F", "\u0165", "\u017A", "\u02DD", "\u017E", "\u017C", "\u0154", "\xC1", "\xC2", "\u0102", "\xC4", "\u0139", "\u0106", "\xC7", "\u010C", "\xC9", "\u0118", "\xCB", "\u011A", "\xCD", "\xCE", "\u010E", "\u0110", "\u0143", "\u0147", "\xD3", "\xD4", "\u0150", "\xD6", "\xD7", "\u0158", "\u016E", "\xDA", "\u0170", "\xDC", "\xDD", "\u0162", "\xDF", "\u0155", "\xE1", "\xE2", "\u0103", "\xE4", "\u013A", "\u0107", "\xE7", "\u010D", "\xE9", "\u0119", "\xEB", "\u011B", "\xED", "\xEE", "\u010F", "\u0111", "\u0144", "\u0148", "\xF3", "\xF4", "\u0151", "\xF6", "\xF7", "\u0159", "\u016F", "\xFA", "\u0171", "\xFC", "\xFD", "\u0163"], ["\u0126", "\u02D8", "\xA3", "\xA4", "\uF7F5", "\u0124", "\xA7", "\xA8", "\u0130", "\u015E", "\u011E", "\u0134", "\xAD", "\uF7F6", "\u017B", "\xB0", "\u0127", "\xB2", "\xB3", "\xB4", "\xB5", "\u0125", "\xB7", "\xB8", "\u0131", "\u015F", "\u011F", "\u0135", "\xBD", "\uF7F7", "\u017C", "\xC0", "\xC1", "\xC2", "\uF7F8", "\xC4", "\u010A", "\u0108", "\xC7", "\xC8", "\xC9", "\xCA", "\xCB", "\xCC", "\xCD", "\xCE", "\xCF", "\uF7F9", "\xD1", "\xD2", "\xD3", "\xD4", "\u0120", "\xD6", "\xD7", "\u011C", "\xD9", "\xDA", "\xDB", "\xDC", "\u016C", "\u015C", "\xDF", "\xE0", "\xE1", "\xE2", "\uF7FA", "\xE4", "\u010B", "\u0109", "\xE7", "\xE8", "\xE9", "\xEA", "\xEB", "\xEC", "\xED", "\xEE", "\xEF", "\uF7FB", "\xF1", "\xF2", "\xF3", "\xF4", "\u0121", "\xF6", "\xF7", "\u011D", "\xF9", "\xFA", "\xFB", "\xFC", "\u016D", "\u015D"], ["\u0104", "\u0138", "\u0156", "\xA4", "\u0128", "\u013B", "\xA7", "\xA8", "\u0160", "\u0112", "\u0122", "\u0166", "\xAD", "\u017D", "\xAF", "\xB0", "\u0105", "\u02DB", "\u0157", "\xB4", "\u0129", "\u013C", "\u02C7", "\xB8", "\u0161", "\u0113", "\u0123", "\u0167", "\u014A", "\u017E", "\u014B", "\u0100", "\xC1", "\xC2", "\xC3", "\xC4", "\xC5", "\xC6", "\u012E", "\u010C", "\xC9", "\u0118", "\xCB", "\u0116", "\xCD", "\xCE", "\u012A", "\u0110", "\u0145", "\u014C", "\u0136", "\xD4", "\xD5", "\xD6", "\xD7", "\xD8", "\u0172", "\xDA", "\xDB", "\xDC", "\u0168", "\u016A", "\xDF", "\u0101", "\xE1", "\xE2", "\xE3", "\xE4", "\xE5", "\xE6", "\u012F", "\u010D", "\xE9", "\u0119", "\xEB", "\u0117", "\xED", "\xEE", "\u012B", "\u0111", "\u0146", "\u014D", "\u0137", "\xF4", "\xF5", "\xF6", "\xF7", "\xF8", "\u0173", "\xFA", "\xFB", "\xFC", "\u0169", "\u016B"], ["\u0401", "\u0402", "\u0403", "\u0404", "\u0405", "\u0406", "\u0407", "\u0408", "\u0409", "\u040A", "\u040B", "\u040C", "\xAD", "\u040E", "\u040F", "\u0410", "\u0411", "\u0412", "\u0413", "\u0414", "\u0415", "\u0416", "\u0417", "\u0418", "\u0419", "\u041A", "\u041B", "\u041C", "\u041D", "\u041E", "\u041F", "\u0420", "\u0421", "\u0422", "\u0423", "\u0424", "\u0425", "\u0426", "\u0427", "\u0428", "\u0429", "\u042A", "\u042B", "\u042C", "\u042D", "\u042E", "\u042F", "\u0430", "\u0431", "\u0432", "\u0433", "\u0434", "\u0435", "\u0436", "\u0437", "\u0438", "\u0439", "\u043A", "\u043B", "\u043C", "\u043D", "\u043E", "\u043F", "\u0440", "\u0441", "\u0442", "\u0443", "\u0444", "\u0445", "\u0446", "\u0447", "\u0448", "\u0449", "\u044A", "\u044B", "\u044C", "\u044D", "\u044E", "\u044F", "\u2116", "\u0451", "\u0452", "\u0453", "\u0454", "\u0455", "\u0456", "\u0457", "\u0458", "\u0459", "\u045A", "\u045B", "\u045C", "\xA7", "\u045E"], ["\uF7C8", "\uF7C9", "\uF7CA", "\xA4", "\uF7CB", "\uF7CC", "\uF7CD", "\uF7CE", "\uF7CF", "\uF7D0", "\uF7D1", "\u060C", "\xAD", "\uF7D2", "\uF7D3", "\uF7D4", "\uF7D5", "\uF7D6", "\uF7D7", "\uF7D8", "\uF7D9", "\uF7DA", "\uF7DB", "\uF7DC", "\uF7DD", "\uF7DE", "\u061B", "\uF7DF", "\uF7E0", "\uF7E1", "\u061F", "\uF7E2", "\u0621", "\u0622", "\u0623", "\u0624", "\u0625", "\u0626", "\u0627", "\u0628", "\u0629", "\u062A", "\u062B", "\u062C", "\u062D", "\u062E", "\u062F", "\u0630", "\u0631", "\u0632", "\u0633", "\u0634", "\u0635", "\u0636", "\u0637", "\u0638", "\u0639", "\u063A", "\uF7E3", "\uF7E4", "\uF7E5", "\uF7E6", "\uF7E7", "\u0640", "\u0641", "\u0642", "\u0643", "\u0644", "\u0645", "\u0646", "\u0647", "\u0648", "\u0649", "\u064A", "\u064B", "\u064C", "\u064D", "\u064E", "\u064F", "\u0650", "\u0651", "\u0652", "\uF7E8", "\uF7E9", "\uF7EA", "\uF7EB", "\uF7EC", "\uF7ED", "\uF7EE", "\uF7EF", "\uF7F0", "\uF7F1", "\uF7F2", "\uF7F3"], ["\u02BD", "\u02BC", "\xA3", "\uF7C2", "\uF7C3", "\xA6", "\xA7", "\xA8", "\xA9", "\uF7C4", "\xAB", "\xAC", "\xAD", "\uF7C5", "\u2015", "\xB0", "\xB1", "\xB2", "\xB3", "\u0384", "\u0385", "\u0386", "\xB7", "\u0388", "\u0389", "\u038A", "\xBB", "\u038C", "\xBD", "\u038E", "\u038F", "\u0390", "\u0391", "\u0392", "\u0393", "\u0394", "\u0395", "\u0396", "\u0397", "\u0398", "\u0399", "\u039A", "\u039B", "\u039C", "\u039D", "\u039E", "\u039F", "\u03A0", "\u03A1", "\uF7C6", "\u03A3", "\u03A4", "\u03A5", "\u03A6", "\u03A7", "\u03A8", "\u03A9", "\u03AA", "\u03AB", "\u03AC", "\u03AD", "\u03AE", "\u03AF", "\u03B0", "\u03B1", "\u03B2", "\u03B3", "\u03B4", "\u03B5", "\u03B6", "\u03B7", "\u03B8", "\u03B9", "\u03BA", "\u03BB", "\u03BC", "\u03BD", "\u03BE", "\u03BF", "\u03C0", "\u03C1", "\u03C2", "\u03C3", "\u03C4", "\u03C5", "\u03C6", "\u03C7", "\u03C8", "\u03C9", "\u03CA", "\u03CB", "\u03CC", "\u03CD", "\u03CE"], ["\uF79C", "\xA2", "\xA3", "\xA4", "\xA5", "\xA6", "\xA7", "\xA8", "\xA9", "\xD7", "\xAB", "\xAC", "\xAD", "\xAE", "\u203E", "\xB0", "\xB1", "\xB2", "\xB3", "\xB4", "\xB5", "\xB6", "\xB7", "\xB8", "\xB9", "\xF7", "\xBB", "\xBC", "\xBD", "\xBE", "\uF79D", "\uF79E", "\uF79F", "\uF7A0", "\uF7A1", "\uF7A2", "\uF7A3", "\uF7A4", "\uF7A5", "\uF7A6", "\uF7A7", "\uF7A8", "\uF7A9", "\uF7AA", "\uF7AB", "\uF7AC", "\uF7AD", "\uF7AE", "\uF7AF", "\uF7B0", "\uF7B1", "\uF7B2", "\uF7B3", "\uF7B4", "\uF7B5", "\uF7B6", "\uF7B7", "\uF7B8", "\uF7B9", "\uF7BA", "\uF7BB", "\uF7BC", "\u2017", "\u05D0", "\u05D1", "\u05D2", "\u05D3", "\u05D4", "\u05D5", "\u05D6", "\u05D7", "\u05D8", "\u05D9", "\u05DA", "\u05DB", "\u05DC", "\u05DD", "\u05DE", "\u05DF", "\u05E0", "\u05E1", "\u05E2", "\u05E3", "\u05E4", "\u05E5", "\u05E6", "\u05E7", "\u05E8", "\u05E9", "\u05EA", "\uF7BD", "\uF7BE", "\uF7BF", "\uF7C0"], ["\xA1", "\xA2", "\xA3", "\xA4", "\xA5", "\xA6", "\xA7", "\xA8", "\xA9", "\xAA", "\xAB", "\xAC", "\xAD", "\xAE", "\xAF", "\xB0", "\xB1", "\xB2", "\xB3", "\xB4", "\xB5", "\xB6", "\xB7", "\xB8", "\xB9", "\xBA", "\xBB", "\xBC", "\xBD", "\xBE", "\xBF", "\xC0", "\xC1", "\xC2", "\xC3", "\xC4", "\xC5", "\xC6", "\xC7", "\xC8", "\xC9", "\xCA", "\xCB", "\xCC", "\xCD", "\xCE", "\xCF", "\u011E", "\xD1", "\xD2", "\xD3", "\xD4", "\xD5", "\xD6", "\xD7", "\xD8", "\xD9", "\xDA", "\xDB", "\xDC", "\u0130", "\u015E", "\xDF", "\xE0", "\xE1", "\xE2", "\xE3", "\xE4", "\xE5", "\xE6", "\xE7", "\xE8", "\xE9", "\xEA", "\xEB", "\xEC", "\xED", "\xEE", "\xEF", "\u011F", "\xF1", "\xF2", "\xF3", "\xF4", "\xF5", "\xF6", "\xF7", "\xF8", "\xF9", "\xFA", "\xFB", "\xFC", "\u0131", "\u015F"]];
16162
16170
  function readHex(character) {
@@ -16388,6 +16396,7 @@ var StepStringParser = class extends ParsingDfa16Table {
16388
16396
  }
16389
16397
  };
16390
16398
  StepStringParser.Instance = new StepStringParser();
16399
+ var step_string_parser_default = StepStringParser;
16391
16400
 
16392
16401
  // compiled/src/step/parsing/step_deserialization_functions.js
16393
16402
  var trueMatch = new TokenMatch(".TRUE.");
@@ -16396,18 +16405,18 @@ var unknownMatch = new TokenMatch(".UNKNOWN.");
16396
16405
  var unknownUMatch = new TokenMatch(".U.");
16397
16406
  var trueTMatch = new TokenMatch(".T.");
16398
16407
  var falseFMatch = new TokenMatch(".F.");
16399
- var DOLLAR = ParsingConstants.DOLLAR;
16400
- var identifierParser = StepEntityIdentifierParser.Instance;
16401
- var commentParser = StepCommentParser.Instance.match;
16402
- var WHITESPACE2 = ParsingConstants.WHITE_SPACE_SET;
16403
- var OPEN_PAREN = ParsingConstants.OPEN_PAREN;
16404
- var CLOSE_PAREN = ParsingConstants.CLOSE_PAREN;
16405
- var QUOTE2 = ParsingConstants.QUOTE;
16406
- var COMMA = ParsingConstants.COMMA;
16407
- var stringParser = StepStringParser.Instance.match;
16408
- var HASH = ParsingConstants.HASH;
16409
- var ZERO4 = ParsingConstants.ZERO;
16410
- var SLASH2 = ParsingConstants.SLASH;
16408
+ var DOLLAR = parsing_constants_default.DOLLAR;
16409
+ var identifierParser = step_entity_identifier_parser_default.Instance;
16410
+ var commentParser = step_comment_parser_default.Instance.match;
16411
+ var WHITESPACE2 = parsing_constants_default.WHITE_SPACE_SET;
16412
+ var OPEN_PAREN = parsing_constants_default.OPEN_PAREN;
16413
+ var CLOSE_PAREN = parsing_constants_default.CLOSE_PAREN;
16414
+ var QUOTE2 = parsing_constants_default.QUOTE;
16415
+ var COMMA = parsing_constants_default.COMMA;
16416
+ var stringParser = step_string_parser_default.Instance.match;
16417
+ var HASH = parsing_constants_default.HASH;
16418
+ var ZERO4 = parsing_constants_default.ZERO;
16419
+ var SLASH2 = parsing_constants_default.SLASH;
16411
16420
  var parsingBufferReusable = new ParsingBuffer(new Uint8Array(1), 0, 1);
16412
16421
  function NVL(testValue, replaceValue) {
16413
16422
  return testValue ?? replaceValue;
@@ -16679,9 +16688,9 @@ function stepExtractReference(input, cursor, endCursor) {
16679
16688
  }
16680
16689
  return base;
16681
16690
  }
16682
- var stepExtractEnum = StepEnumParser.Instance.extract;
16683
- var stepExtractString = StepStringParser.Instance.extract;
16684
- var stepExtractBinary = HexParser.Instance.extractStep;
16691
+ var stepExtractEnum = step_enum_parser_default.Instance.extract;
16692
+ var stepExtractString = step_string_parser_default.Instance.extract;
16693
+ var stepExtractBinary = hex_parser_default.Instance.extractStep;
16685
16694
 
16686
16695
  // compiled/src/step/parsing/step_parser.js
16687
16696
  var ParseResult;
@@ -16698,20 +16707,20 @@ var HEADER = encodeToken("HEADER");
16698
16707
  var DATA = encodeToken("DATA");
16699
16708
  var END_SECTION = encodeToken("ENDSEC");
16700
16709
  var INF = encodeToken("INF");
16701
- var HASH2 = ParsingConstants.HASH;
16702
- var EQUALS = ParsingConstants.EQUALS;
16703
- var COMMA2 = ParsingConstants.COMMA;
16704
- var OPEN_PAREN2 = ParsingConstants.OPEN_PAREN;
16705
- var CLOSE_PAREN2 = ParsingConstants.CLOSE_PAREN;
16706
- var SEMICOLON = ParsingConstants.SEMICOLON;
16707
- var WHITESPACE3 = ParsingConstants.WHITE_SPACE_SET;
16708
- var QUOTE3 = ParsingConstants.QUOTE;
16709
- var enumParser = StepEnumParser.Instance.match;
16710
- var identifierParser2 = StepEntityIdentifierParser.Instance.match;
16711
- var binaryParser = HexParser.Instance.step;
16712
- var attributeMap = StepAttributeMap.Instance.get;
16713
- var commentParser2 = StepCommentParser.Instance.match;
16714
- var stringParser2 = StepStringParser.Instance.match;
16710
+ var HASH2 = parsing_constants_default.HASH;
16711
+ var EQUALS = parsing_constants_default.EQUALS;
16712
+ var COMMA2 = parsing_constants_default.COMMA;
16713
+ var OPEN_PAREN2 = parsing_constants_default.OPEN_PAREN;
16714
+ var CLOSE_PAREN2 = parsing_constants_default.CLOSE_PAREN;
16715
+ var SEMICOLON = parsing_constants_default.SEMICOLON;
16716
+ var WHITESPACE3 = parsing_constants_default.WHITE_SPACE_SET;
16717
+ var QUOTE3 = parsing_constants_default.QUOTE;
16718
+ var enumParser = step_enum_parser_default.Instance.match;
16719
+ var identifierParser2 = step_entity_identifier_parser_default.Instance.match;
16720
+ var binaryParser = hex_parser_default.Instance.step;
16721
+ var attributeMap = step_attribute_map_default.Instance.get;
16722
+ var commentParser2 = step_comment_parser_default.Instance.match;
16723
+ var stringParser2 = step_string_parser_default.Instance.match;
16715
16724
  var textDecoder = new TextDecoder();
16716
16725
  var StepHeaderParser = class _StepHeaderParser {
16717
16726
  /**
@@ -16960,7 +16969,7 @@ var StepParser = class extends StepHeaderParser {
16960
16969
  return token(encoded);
16961
16970
  };
16962
16971
  const stringMatch = () => match(stringParser2);
16963
- const whileNotCommaBracket = () => input.whileNot(ParsingConstants.COMMA_END_SET);
16972
+ const whileNotCommaBracket = () => input.whileNot(parsing_constants_default.COMMA_END_SET);
16964
16973
  const readUnsigned = input.readUnsigned;
16965
16974
  const readUnsignedws = () => {
16966
16975
  whitespace();
@@ -17116,6 +17125,7 @@ var StepParser = class extends StepHeaderParser {
17116
17125
  address: startElement2,
17117
17126
  length: input.address - startElement2,
17118
17127
  typeID: 0,
17128
+ // external mapping special case.
17119
17129
  expressID,
17120
17130
  inlineEntities: inlineElements,
17121
17131
  multiMapping: multiElements
@@ -18686,11 +18696,12 @@ var IndexSetConstants = class {
18686
18696
  IndexSetConstants.MASK_BOTTOMBITS = 31;
18687
18697
  IndexSetConstants.MASK_TOPBITS = ~IndexSetConstants.MASK_BOTTOMBITS >>> 0;
18688
18698
  IndexSetConstants.SHIFT_TOPBITS = 5;
18699
+ var index_set_constants_default = IndexSetConstants;
18689
18700
 
18690
18701
  // compiled/src/indexing/bit_operations.js
18691
- var MASK_BOTTOMBITS = IndexSetConstants.MASK_BOTTOMBITS;
18692
- var MASK_TOPBITS = IndexSetConstants.MASK_TOPBITS;
18693
- var SHIFT_TOPBITS = IndexSetConstants.SHIFT_TOPBITS;
18702
+ var MASK_BOTTOMBITS = index_set_constants_default.MASK_BOTTOMBITS;
18703
+ var MASK_TOPBITS = index_set_constants_default.MASK_TOPBITS;
18704
+ var SHIFT_TOPBITS = index_set_constants_default.SHIFT_TOPBITS;
18694
18705
  var clz = Math.clz32;
18695
18706
  function extractOneHotLow(low) {
18696
18707
  low >>>= 0;
@@ -19576,7 +19587,7 @@ var prefixSumAddressIfcActionRequestTypeEnum = new Uint32Array([0, 13, 19, 24, 3
19576
19587
  var slotMapIfcActionRequestTypeEnum = new Int32Array([5, 3, 1, 6, 4, 2, 0]);
19577
19588
  var encodedDataIfcActionRequestTypeEnum = new TextEncoder().encode(".USERDEFINED..POST..FAX..NOTDEFINED..VERBAL..PHONE..EMAIL.");
19578
19589
  var IfcActionRequestTypeEnumSearch = new MinimalPerfectHash(gMapIfcActionRequestTypeEnum, prefixSumAddressIfcActionRequestTypeEnum, slotMapIfcActionRequestTypeEnum, encodedDataIfcActionRequestTypeEnum);
19579
- var parser = StepEnumParser.Instance;
19590
+ var parser = step_enum_parser_default.Instance;
19580
19591
  function IfcActionRequestTypeEnumDeserializeStep(input, cursor, endCursor) {
19581
19592
  return parser.extract(IfcActionRequestTypeEnumSearch, input, cursor, endCursor);
19582
19593
  }
@@ -19617,7 +19628,7 @@ var prefixSumAddressIfcActionSourceTypeEnum = new Uint32Array([0, 21, 29, 41, 54
19617
19628
  var slotMapIfcActionSourceTypeEnum = new Int32Array([15, 24, 26, 0, 3, 7, 11, 6, 9, 23, 5, 8, 19, 16, 22, 21, 13, 10, 4, 12, 20, 14, 18, 2, 17, 25, 1]);
19618
19629
  var encodedDataIfcActionSourceTypeEnum = new TextEncoder().encode(".SYSTEM_IMPERFECTION..BRAKES..NOTDEFINED..DEAD_LOAD_G..SNOW_S..TEMPERATURE_T..IMPACT..SETTLEMENT_U..FIRE..RAIN..PRESTRESSING_P..EARTHQUAKE_E..BUOYANCY..SHRINKAGE..WAVE..CURRENT..ERECTION..IMPULSE..WIND_W..TRANSPORT..ICE..PROPPING..LACK_OF_FIT..LIVE_LOAD_Q..CREEP..USERDEFINED..COMPLETION_G1.");
19619
19630
  var IfcActionSourceTypeEnumSearch = new MinimalPerfectHash(gMapIfcActionSourceTypeEnum, prefixSumAddressIfcActionSourceTypeEnum, slotMapIfcActionSourceTypeEnum, encodedDataIfcActionSourceTypeEnum);
19620
- var parser2 = StepEnumParser.Instance;
19631
+ var parser2 = step_enum_parser_default.Instance;
19621
19632
  function IfcActionSourceTypeEnumDeserializeStep(input, cursor, endCursor) {
19622
19633
  return parser2.extract(IfcActionSourceTypeEnumSearch, input, cursor, endCursor);
19623
19634
  }
@@ -19636,7 +19647,7 @@ var prefixSumAddressIfcActionTypeEnum = new Uint32Array([0, 13, 25, 37, 50, 67])
19636
19647
  var slotMapIfcActionTypeEnum = new Int32Array([0, 1, 4, 3, 2]);
19637
19648
  var encodedDataIfcActionTypeEnum = new TextEncoder().encode(".PERMANENT_G..VARIABLE_Q..NOTDEFINED..USERDEFINED..EXTRAORDINARY_A.");
19638
19649
  var IfcActionTypeEnumSearch = new MinimalPerfectHash(gMapIfcActionTypeEnum, prefixSumAddressIfcActionTypeEnum, slotMapIfcActionTypeEnum, encodedDataIfcActionTypeEnum);
19639
- var parser3 = StepEnumParser.Instance;
19650
+ var parser3 = step_enum_parser_default.Instance;
19640
19651
  function IfcActionTypeEnumDeserializeStep(input, cursor, endCursor) {
19641
19652
  return parser3.extract(IfcActionTypeEnumSearch, input, cursor, endCursor);
19642
19653
  }
@@ -19657,7 +19668,7 @@ var prefixSumAddressIfcActuatorTypeEnum = new Uint32Array([0, 13, 32, 51, 73, 85
19657
19668
  var slotMapIfcActuatorTypeEnum = new Int32Array([5, 3, 2, 4, 6, 1, 0]);
19658
19669
  var encodedDataIfcActuatorTypeEnum = new TextEncoder().encode(".USERDEFINED..PNEUMATICACTUATOR..HYDRAULICACTUATOR..THERMOSTATICACTUATOR..NOTDEFINED..HANDOPERATEDACTUATOR..ELECTRICACTUATOR.");
19659
19670
  var IfcActuatorTypeEnumSearch = new MinimalPerfectHash(gMapIfcActuatorTypeEnum, prefixSumAddressIfcActuatorTypeEnum, slotMapIfcActuatorTypeEnum, encodedDataIfcActuatorTypeEnum);
19660
- var parser4 = StepEnumParser.Instance;
19671
+ var parser4 = step_enum_parser_default.Instance;
19661
19672
  function IfcActuatorTypeEnumDeserializeStep(input, cursor, endCursor) {
19662
19673
  return parser4.extract(IfcActuatorTypeEnumSearch, input, cursor, endCursor);
19663
19674
  }
@@ -19676,7 +19687,7 @@ var prefixSumAddressIfcAddressTypeEnum = new Uint32Array([0, 6, 14, 27, 46, 52])
19676
19687
  var slotMapIfcAddressTypeEnum = new Int32Array([2, 0, 4, 3, 1]);
19677
19688
  var encodedDataIfcAddressTypeEnum = new TextEncoder().encode(".HOME..OFFICE..USERDEFINED..DISTRIBUTIONPOINT..SITE.");
19678
19689
  var IfcAddressTypeEnumSearch = new MinimalPerfectHash(gMapIfcAddressTypeEnum, prefixSumAddressIfcAddressTypeEnum, slotMapIfcAddressTypeEnum, encodedDataIfcAddressTypeEnum);
19679
- var parser5 = StepEnumParser.Instance;
19690
+ var parser5 = step_enum_parser_default.Instance;
19680
19691
  function IfcAddressTypeEnumDeserializeStep(input, cursor, endCursor) {
19681
19692
  return parser5.extract(IfcAddressTypeEnumSearch, input, cursor, endCursor);
19682
19693
  }
@@ -19695,7 +19706,7 @@ var prefixSumAddressIfcAirTerminalBoxTypeEnum = new Uint32Array([0, 13, 27, 60,
19695
19706
  var slotMapIfcAirTerminalBoxTypeEnum = new Int32Array([3, 0, 2, 4, 1]);
19696
19707
  var encodedDataIfcAirTerminalBoxTypeEnum = new TextEncoder().encode(".USERDEFINED..CONSTANTFLOW..VARIABLEFLOWPRESSUREINDEPENDANT..NOTDEFINED..VARIABLEFLOWPRESSUREDEPENDANT.");
19697
19708
  var IfcAirTerminalBoxTypeEnumSearch = new MinimalPerfectHash(gMapIfcAirTerminalBoxTypeEnum, prefixSumAddressIfcAirTerminalBoxTypeEnum, slotMapIfcAirTerminalBoxTypeEnum, encodedDataIfcAirTerminalBoxTypeEnum);
19698
- var parser6 = StepEnumParser.Instance;
19709
+ var parser6 = step_enum_parser_default.Instance;
19699
19710
  function IfcAirTerminalBoxTypeEnumDeserializeStep(input, cursor, endCursor) {
19700
19711
  return parser6.extract(IfcAirTerminalBoxTypeEnumSearch, input, cursor, endCursor);
19701
19712
  }
@@ -19715,7 +19726,7 @@ var prefixSumAddressIfcAirTerminalTypeEnum = new Uint32Array([0, 13, 21, 31, 41,
19715
19726
  var slotMapIfcAirTerminalTypeEnum = new Int32Array([4, 1, 0, 3, 5, 2]);
19716
19727
  var encodedDataIfcAirTerminalTypeEnum = new TextEncoder().encode(".USERDEFINED..GRILLE..DIFFUSER..REGISTER..NOTDEFINED..LOUVRE.");
19717
19728
  var IfcAirTerminalTypeEnumSearch = new MinimalPerfectHash(gMapIfcAirTerminalTypeEnum, prefixSumAddressIfcAirTerminalTypeEnum, slotMapIfcAirTerminalTypeEnum, encodedDataIfcAirTerminalTypeEnum);
19718
- var parser7 = StepEnumParser.Instance;
19729
+ var parser7 = step_enum_parser_default.Instance;
19719
19730
  function IfcAirTerminalTypeEnumDeserializeStep(input, cursor, endCursor) {
19720
19731
  return parser7.extract(IfcAirTerminalTypeEnumSearch, input, cursor, endCursor);
19721
19732
  }
@@ -19740,7 +19751,7 @@ var prefixSumAddressIfcAirToAirHeatRecoveryTypeEnum = new Uint32Array([0, 32, 45
19740
19751
  var slotMapIfcAirToAirHeatRecoveryTypeEnum = new Int32Array([0, 9, 6, 2, 5, 1, 8, 3, 4, 7, 10]);
19741
19752
  var encodedDataIfcAirToAirHeatRecoveryTypeEnum = new TextEncoder().encode(".FIXEDPLATECOUNTERFLOWEXCHANGER..USERDEFINED..TWINTOWERENTHALPYRECOVERYLOOPS..FIXEDPLATEPARALLELFLOWEXCHANGER..HEATPIPE..FIXEDPLATECROSSFLOWEXCHANGER..THERMOSIPHONCOILTYPEHEATEXCHANGERS..ROTARYWHEEL..RUNAROUNDCOILLOOP..THERMOSIPHONSEALEDTUBEHEATEXCHANGERS..NOTDEFINED.");
19742
19753
  var IfcAirToAirHeatRecoveryTypeEnumSearch = new MinimalPerfectHash(gMapIfcAirToAirHeatRecoveryTypeEnum, prefixSumAddressIfcAirToAirHeatRecoveryTypeEnum, slotMapIfcAirToAirHeatRecoveryTypeEnum, encodedDataIfcAirToAirHeatRecoveryTypeEnum);
19743
- var parser8 = StepEnumParser.Instance;
19754
+ var parser8 = step_enum_parser_default.Instance;
19744
19755
  function IfcAirToAirHeatRecoveryTypeEnumDeserializeStep(input, cursor, endCursor) {
19745
19756
  return parser8.extract(IfcAirToAirHeatRecoveryTypeEnumSearch, input, cursor, endCursor);
19746
19757
  }
@@ -19762,7 +19773,7 @@ var prefixSumAddressIfcAlarmTypeEnum = new Uint32Array([0, 12, 19, 28, 46, 53, 5
19762
19773
  var slotMapIfcAlarmTypeEnum = new Int32Array([7, 4, 5, 1, 2, 0, 3, 6]);
19763
19774
  var encodedDataIfcAlarmTypeEnum = new TextEncoder().encode(".NOTDEFINED..SIREN..WHISTLE..BREAKGLASSBUTTON..LIGHT..BELL..MANUALPULLBOX..USERDEFINED.");
19764
19775
  var IfcAlarmTypeEnumSearch = new MinimalPerfectHash(gMapIfcAlarmTypeEnum, prefixSumAddressIfcAlarmTypeEnum, slotMapIfcAlarmTypeEnum, encodedDataIfcAlarmTypeEnum);
19765
- var parser9 = StepEnumParser.Instance;
19776
+ var parser9 = step_enum_parser_default.Instance;
19766
19777
  function IfcAlarmTypeEnumDeserializeStep(input, cursor, endCursor) {
19767
19778
  return parser9.extract(IfcAlarmTypeEnumSearch, input, cursor, endCursor);
19768
19779
  }
@@ -19781,7 +19792,7 @@ var prefixSumAddressIfcAnalysisModelTypeEnum = new Uint32Array([0, 22, 43, 55, 6
19781
19792
  var slotMapIfcAnalysisModelTypeEnum = new Int32Array([1, 0, 2, 3, 4]);
19782
19793
  var encodedDataIfcAnalysisModelTypeEnum = new TextEncoder().encode(".OUT_PLANE_LOADING_2D..IN_PLANE_LOADING_2D..LOADING_3D..USERDEFINED..NOTDEFINED.");
19783
19794
  var IfcAnalysisModelTypeEnumSearch = new MinimalPerfectHash(gMapIfcAnalysisModelTypeEnum, prefixSumAddressIfcAnalysisModelTypeEnum, slotMapIfcAnalysisModelTypeEnum, encodedDataIfcAnalysisModelTypeEnum);
19784
- var parser10 = StepEnumParser.Instance;
19795
+ var parser10 = step_enum_parser_default.Instance;
19785
19796
  function IfcAnalysisModelTypeEnumDeserializeStep(input, cursor, endCursor) {
19786
19797
  return parser10.extract(IfcAnalysisModelTypeEnumSearch, input, cursor, endCursor);
19787
19798
  }
@@ -19801,7 +19812,7 @@ var prefixSumAddressIfcAnalysisTheoryTypeEnum = new Uint32Array([0, 23, 44, 56,
19801
19812
  var slotMapIfcAnalysisTheoryTypeEnum = new Int32Array([3, 1, 5, 0, 2, 4]);
19802
19813
  var encodedDataIfcAnalysisTheoryTypeEnum = new TextEncoder().encode(".FULL_NONLINEAR_THEORY..SECOND_ORDER_THEORY..NOTDEFINED..FIRST_ORDER_THEORY..THIRD_ORDER_THEORY..USERDEFINED.");
19803
19814
  var IfcAnalysisTheoryTypeEnumSearch = new MinimalPerfectHash(gMapIfcAnalysisTheoryTypeEnum, prefixSumAddressIfcAnalysisTheoryTypeEnum, slotMapIfcAnalysisTheoryTypeEnum, encodedDataIfcAnalysisTheoryTypeEnum);
19804
- var parser11 = StepEnumParser.Instance;
19815
+ var parser11 = step_enum_parser_default.Instance;
19805
19816
  function IfcAnalysisTheoryTypeEnumDeserializeStep(input, cursor, endCursor) {
19806
19817
  return parser11.extract(IfcAnalysisTheoryTypeEnumSearch, input, cursor, endCursor);
19807
19818
  }
@@ -19819,7 +19830,7 @@ var prefixSumAddressIfcArithmeticOperatorEnum = new Uint32Array([0, 8, 18, 28, 3
19819
19830
  var slotMapIfcArithmeticOperatorEnum = new Int32Array([1, 2, 3, 0]);
19820
19831
  var encodedDataIfcArithmeticOperatorEnum = new TextEncoder().encode(".DIVIDE..MULTIPLY..SUBTRACT..ADD.");
19821
19832
  var IfcArithmeticOperatorEnumSearch = new MinimalPerfectHash(gMapIfcArithmeticOperatorEnum, prefixSumAddressIfcArithmeticOperatorEnum, slotMapIfcArithmeticOperatorEnum, encodedDataIfcArithmeticOperatorEnum);
19822
- var parser12 = StepEnumParser.Instance;
19833
+ var parser12 = step_enum_parser_default.Instance;
19823
19834
  function IfcArithmeticOperatorEnumDeserializeStep(input, cursor, endCursor) {
19824
19835
  return parser12.extract(IfcArithmeticOperatorEnumSearch, input, cursor, endCursor);
19825
19836
  }
@@ -19836,7 +19847,7 @@ var prefixSumAddressIfcAssemblyPlaceEnum = new Uint32Array([0, 9, 21, 27]);
19836
19847
  var slotMapIfcAssemblyPlaceEnum = new Int32Array([1, 2, 0]);
19837
19848
  var encodedDataIfcAssemblyPlaceEnum = new TextEncoder().encode(".FACTORY..NOTDEFINED..SITE.");
19838
19849
  var IfcAssemblyPlaceEnumSearch = new MinimalPerfectHash(gMapIfcAssemblyPlaceEnum, prefixSumAddressIfcAssemblyPlaceEnum, slotMapIfcAssemblyPlaceEnum, encodedDataIfcAssemblyPlaceEnum);
19839
- var parser13 = StepEnumParser.Instance;
19850
+ var parser13 = step_enum_parser_default.Instance;
19840
19851
  function IfcAssemblyPlaceEnumDeserializeStep(input, cursor, endCursor) {
19841
19852
  return parser13.extract(IfcAssemblyPlaceEnumSearch, input, cursor, endCursor);
19842
19853
  }
@@ -19863,7 +19874,7 @@ var prefixSumAddressIfcAudioVisualApplianceTypeEnum = new Uint32Array([0, 7, 19,
19863
19874
  var slotMapIfcAudioVisualApplianceTypeEnum = new Int32Array([10, 12, 9, 11, 1, 0, 3, 7, 6, 2, 5, 4, 8]);
19864
19875
  var encodedDataIfcAudioVisualApplianceTypeEnum = new TextEncoder().encode(".TUNER..NOTDEFINED..TELEPHONE..USERDEFINED..CAMERA..AMPLIFIER..MICROPHONE..SPEAKER..RECEIVER..DISPLAY..PROJECTOR..PLAYER..SWITCHER.");
19865
19876
  var IfcAudioVisualApplianceTypeEnumSearch = new MinimalPerfectHash(gMapIfcAudioVisualApplianceTypeEnum, prefixSumAddressIfcAudioVisualApplianceTypeEnum, slotMapIfcAudioVisualApplianceTypeEnum, encodedDataIfcAudioVisualApplianceTypeEnum);
19866
- var parser14 = StepEnumParser.Instance;
19877
+ var parser14 = step_enum_parser_default.Instance;
19867
19878
  function IfcAudioVisualApplianceTypeEnumDeserializeStep(input, cursor, endCursor) {
19868
19879
  return parser14.extract(IfcAudioVisualApplianceTypeEnumSearch, input, cursor, endCursor);
19869
19880
  }
@@ -19885,7 +19896,7 @@ var prefixSumAddressIfcBeamTypeEnum = new Uint32Array([0, 7, 17, 29, 41, 54, 62,
19885
19896
  var slotMapIfcBeamTypeEnum = new Int32Array([1, 4, 7, 2, 6, 3, 5, 0]);
19886
19897
  var encodedDataIfcBeamTypeEnum = new TextEncoder().encode(".JOIST..SPANDREL..NOTDEFINED..HOLLOWCORE..USERDEFINED..LINTEL..T_BEAM..BEAM.");
19887
19898
  var IfcBeamTypeEnumSearch = new MinimalPerfectHash(gMapIfcBeamTypeEnum, prefixSumAddressIfcBeamTypeEnum, slotMapIfcBeamTypeEnum, encodedDataIfcBeamTypeEnum);
19888
- var parser15 = StepEnumParser.Instance;
19899
+ var parser15 = step_enum_parser_default.Instance;
19889
19900
  function IfcBeamTypeEnumDeserializeStep(input, cursor, endCursor) {
19890
19901
  return parser15.extract(IfcBeamTypeEnumSearch, input, cursor, endCursor);
19891
19902
  }
@@ -19909,7 +19920,7 @@ var prefixSumAddressIfcBenchmarkEnum = new Uint32Array([0, 19, 29, 38, 53, 65, 8
19909
19920
  var slotMapIfcBenchmarkEnum = new Int32Array([3, 2, 4, 9, 8, 1, 7, 0, 6, 5]);
19910
19921
  var encodedDataIfcBenchmarkEnum = new TextEncoder().encode(".LESSTHANOREQUALTO..LESSTHAN..EQUALTO..NOTINCLUDEDIN..INCLUDEDIN..GREATERTHANOREQUALTO..NOTINCLUDES..GREATERTHAN..INCLUDES..NOTEQUALTO.");
19911
19922
  var IfcBenchmarkEnumSearch = new MinimalPerfectHash(gMapIfcBenchmarkEnum, prefixSumAddressIfcBenchmarkEnum, slotMapIfcBenchmarkEnum, encodedDataIfcBenchmarkEnum);
19912
- var parser16 = StepEnumParser.Instance;
19923
+ var parser16 = step_enum_parser_default.Instance;
19913
19924
  function IfcBenchmarkEnumDeserializeStep(input, cursor, endCursor) {
19914
19925
  return parser16.extract(IfcBenchmarkEnumSearch, input, cursor, endCursor);
19915
19926
  }
@@ -19927,7 +19938,7 @@ var prefixSumAddressIfcBoilerTypeEnum = new Uint32Array([0, 12, 19, 26, 39]);
19927
19938
  var slotMapIfcBoilerTypeEnum = new Int32Array([3, 1, 0, 2]);
19928
19939
  var encodedDataIfcBoilerTypeEnum = new TextEncoder().encode(".NOTDEFINED..STEAM..WATER..USERDEFINED.");
19929
19940
  var IfcBoilerTypeEnumSearch = new MinimalPerfectHash(gMapIfcBoilerTypeEnum, prefixSumAddressIfcBoilerTypeEnum, slotMapIfcBoilerTypeEnum, encodedDataIfcBoilerTypeEnum);
19930
- var parser17 = StepEnumParser.Instance;
19941
+ var parser17 = step_enum_parser_default.Instance;
19931
19942
  function IfcBoilerTypeEnumDeserializeStep(input, cursor, endCursor) {
19932
19943
  return parser17.extract(IfcBoilerTypeEnumSearch, input, cursor, endCursor);
19933
19944
  }
@@ -19944,7 +19955,7 @@ var prefixSumAddressIfcBooleanOperator = new Uint32Array([0, 7, 21, 33]);
19944
19955
  var slotMapIfcBooleanOperator = new Int32Array([0, 1, 2]);
19945
19956
  var encodedDataIfcBooleanOperator = new TextEncoder().encode(".UNION..INTERSECTION..DIFFERENCE.");
19946
19957
  var IfcBooleanOperatorSearch = new MinimalPerfectHash(gMapIfcBooleanOperator, prefixSumAddressIfcBooleanOperator, slotMapIfcBooleanOperator, encodedDataIfcBooleanOperator);
19947
- var parser18 = StepEnumParser.Instance;
19958
+ var parser18 = step_enum_parser_default.Instance;
19948
19959
  function IfcBooleanOperatorDeserializeStep(input, cursor, endCursor) {
19949
19960
  return parser18.extract(IfcBooleanOperatorSearch, input, cursor, endCursor);
19950
19961
  }
@@ -19964,7 +19975,7 @@ var prefixSumAddressIfcBSplineCurveForm = new Uint32Array([0, 16, 31, 44, 59, 73
19964
19975
  var slotMapIfcBSplineCurveForm = new Int32Array([4, 3, 5, 0, 1, 2]);
19965
19976
  var encodedDataIfcBSplineCurveForm = new TextEncoder().encode(".HYPERBOLIC_ARC..PARABOLIC_ARC..UNSPECIFIED..POLYLINE_FORM..CIRCULAR_ARC..ELLIPTIC_ARC.");
19966
19977
  var IfcBSplineCurveFormSearch = new MinimalPerfectHash(gMapIfcBSplineCurveForm, prefixSumAddressIfcBSplineCurveForm, slotMapIfcBSplineCurveForm, encodedDataIfcBSplineCurveForm);
19967
- var parser19 = StepEnumParser.Instance;
19978
+ var parser19 = step_enum_parser_default.Instance;
19968
19979
  function IfcBSplineCurveFormDeserializeStep(input, cursor, endCursor) {
19969
19980
  return parser19.extract(IfcBSplineCurveFormSearch, input, cursor, endCursor);
19970
19981
  }
@@ -19989,7 +20000,7 @@ var prefixSumAddressIfcBSplineSurfaceForm = new Uint32Array([0, 18, 34, 48, 60,
19989
20000
  var slotMapIfcBSplineSurfaceForm = new Int32Array([7, 3, 2, 0, 9, 5, 8, 6, 1, 4, 10]);
19990
20001
  var encodedDataIfcBSplineSurfaceForm = new TextEncoder().encode(".GENERALISED_CONE..SPHERICAL_SURF..CONICAL_SURF..PLANE_SURF..SURF_OF_LINEAR_EXTRUSION..SURF_OF_REVOLUTION..QUADRIC_SURF..RULED_SURF..CYLINDRICAL_SURF..TOROIDAL_SURF..UNSPECIFIED.");
19991
20002
  var IfcBSplineSurfaceFormSearch = new MinimalPerfectHash(gMapIfcBSplineSurfaceForm, prefixSumAddressIfcBSplineSurfaceForm, slotMapIfcBSplineSurfaceForm, encodedDataIfcBSplineSurfaceForm);
19992
- var parser20 = StepEnumParser.Instance;
20003
+ var parser20 = step_enum_parser_default.Instance;
19993
20004
  function IfcBSplineSurfaceFormDeserializeStep(input, cursor, endCursor) {
19994
20005
  return parser20.extract(IfcBSplineSurfaceFormSearch, input, cursor, endCursor);
19995
20006
  }
@@ -20007,7 +20018,7 @@ var prefixSumAddressIfcBuildingElementPartTypeEnum = new Uint32Array([0, 14, 27,
20007
20018
  var slotMapIfcBuildingElementPartTypeEnum = new Int32Array([1, 2, 0, 3]);
20008
20019
  var encodedDataIfcBuildingElementPartTypeEnum = new TextEncoder().encode(".PRECASTPANEL..USERDEFINED..INSULATION..NOTDEFINED.");
20009
20020
  var IfcBuildingElementPartTypeEnumSearch = new MinimalPerfectHash(gMapIfcBuildingElementPartTypeEnum, prefixSumAddressIfcBuildingElementPartTypeEnum, slotMapIfcBuildingElementPartTypeEnum, encodedDataIfcBuildingElementPartTypeEnum);
20010
- var parser21 = StepEnumParser.Instance;
20021
+ var parser21 = step_enum_parser_default.Instance;
20011
20022
  function IfcBuildingElementPartTypeEnumDeserializeStep(input, cursor, endCursor) {
20012
20023
  return parser21.extract(IfcBuildingElementPartTypeEnumSearch, input, cursor, endCursor);
20013
20024
  }
@@ -20028,7 +20039,7 @@ var prefixSumAddressIfcBuildingElementProxyTypeEnum = new Uint32Array([0, 12, 30
20028
20039
  var slotMapIfcBuildingElementProxyTypeEnum = new Int32Array([6, 3, 2, 0, 4, 5, 1]);
20029
20040
  var encodedDataIfcBuildingElementProxyTypeEnum = new TextEncoder().encode(".NOTDEFINED..PROVISIONFORVOID..PARTIAL..COMPLEX..PROVISIONFORSPACE..USERDEFINED..ELEMENT.");
20030
20041
  var IfcBuildingElementProxyTypeEnumSearch = new MinimalPerfectHash(gMapIfcBuildingElementProxyTypeEnum, prefixSumAddressIfcBuildingElementProxyTypeEnum, slotMapIfcBuildingElementProxyTypeEnum, encodedDataIfcBuildingElementProxyTypeEnum);
20031
- var parser22 = StepEnumParser.Instance;
20042
+ var parser22 = step_enum_parser_default.Instance;
20032
20043
  function IfcBuildingElementProxyTypeEnumDeserializeStep(input, cursor, endCursor) {
20033
20044
  return parser22.extract(IfcBuildingElementProxyTypeEnumSearch, input, cursor, endCursor);
20034
20045
  }
@@ -20050,7 +20061,7 @@ var prefixSumAddressIfcBuildingSystemTypeEnum = new Uint32Array([0, 9, 21, 33, 4
20050
20061
  var slotMapIfcBuildingSystemTypeEnum = new Int32Array([4, 1, 3, 0, 7, 5, 6, 2]);
20051
20062
  var encodedDataIfcBuildingSystemTypeEnum = new TextEncoder().encode(".SHADING..FOUNDATION..OUTERSHELL..FENESTRATION..NOTDEFINED..TRANSPORT..USERDEFINED..LOADBEARING.");
20052
20063
  var IfcBuildingSystemTypeEnumSearch = new MinimalPerfectHash(gMapIfcBuildingSystemTypeEnum, prefixSumAddressIfcBuildingSystemTypeEnum, slotMapIfcBuildingSystemTypeEnum, encodedDataIfcBuildingSystemTypeEnum);
20053
- var parser23 = StepEnumParser.Instance;
20064
+ var parser23 = step_enum_parser_default.Instance;
20054
20065
  function IfcBuildingSystemTypeEnumDeserializeStep(input, cursor, endCursor) {
20055
20066
  return parser23.extract(IfcBuildingSystemTypeEnumSearch, input, cursor, endCursor);
20056
20067
  }
@@ -20066,7 +20077,7 @@ var prefixSumAddressIfcBurnerTypeEnum = new Uint32Array([0, 13, 25]);
20066
20077
  var slotMapIfcBurnerTypeEnum = new Int32Array([0, 1]);
20067
20078
  var encodedDataIfcBurnerTypeEnum = new TextEncoder().encode(".USERDEFINED..NOTDEFINED.");
20068
20079
  var IfcBurnerTypeEnumSearch = new MinimalPerfectHash(gMapIfcBurnerTypeEnum, prefixSumAddressIfcBurnerTypeEnum, slotMapIfcBurnerTypeEnum, encodedDataIfcBurnerTypeEnum);
20069
- var parser24 = StepEnumParser.Instance;
20080
+ var parser24 = step_enum_parser_default.Instance;
20070
20081
  function IfcBurnerTypeEnumDeserializeStep(input, cursor, endCursor) {
20071
20082
  return parser24.extract(IfcBurnerTypeEnumSearch, input, cursor, endCursor);
20072
20083
  }
@@ -20086,7 +20097,7 @@ var prefixSumAddressIfcCableCarrierFittingTypeEnum = new Uint32Array([0, 13, 22,
20086
20097
  var slotMapIfcCableCarrierFittingTypeEnum = new Int32Array([4, 2, 5, 0, 1, 3]);
20087
20098
  var encodedDataIfcCableCarrierFittingTypeEnum = new TextEncoder().encode(".USERDEFINED..REDUCER..NOTDEFINED..BEND..CROSS..TEE.");
20088
20099
  var IfcCableCarrierFittingTypeEnumSearch = new MinimalPerfectHash(gMapIfcCableCarrierFittingTypeEnum, prefixSumAddressIfcCableCarrierFittingTypeEnum, slotMapIfcCableCarrierFittingTypeEnum, encodedDataIfcCableCarrierFittingTypeEnum);
20089
- var parser25 = StepEnumParser.Instance;
20100
+ var parser25 = step_enum_parser_default.Instance;
20090
20101
  function IfcCableCarrierFittingTypeEnumDeserializeStep(input, cursor, endCursor) {
20091
20102
  return parser25.extract(IfcCableCarrierFittingTypeEnumSearch, input, cursor, endCursor);
20092
20103
  }
@@ -20106,7 +20117,7 @@ var prefixSumAddressIfcCableCarrierSegmentTypeEnum = new Uint32Array([0, 13, 29,
20106
20117
  var slotMapIfcCableCarrierSegmentTypeEnum = new Int32Array([4, 3, 0, 1, 2, 5]);
20107
20118
  var encodedDataIfcCableCarrierSegmentTypeEnum = new TextEncoder().encode(".USERDEFINED..CONDUITSEGMENT..CABLELADDERSEGMENT..CABLETRAYSEGMENT..CABLETRUNKINGSEGMENT..NOTDEFINED.");
20108
20119
  var IfcCableCarrierSegmentTypeEnumSearch = new MinimalPerfectHash(gMapIfcCableCarrierSegmentTypeEnum, prefixSumAddressIfcCableCarrierSegmentTypeEnum, slotMapIfcCableCarrierSegmentTypeEnum, encodedDataIfcCableCarrierSegmentTypeEnum);
20109
- var parser26 = StepEnumParser.Instance;
20120
+ var parser26 = step_enum_parser_default.Instance;
20110
20121
  function IfcCableCarrierSegmentTypeEnumDeserializeStep(input, cursor, endCursor) {
20111
20122
  return parser26.extract(IfcCableCarrierSegmentTypeEnumSearch, input, cursor, endCursor);
20112
20123
  }
@@ -20127,7 +20138,7 @@ var prefixSumAddressIfcCableFittingTypeEnum = new Uint32Array([0, 7, 19, 25, 38,
20127
20138
  var slotMapIfcCableFittingTypeEnum = new Int32Array([1, 4, 2, 5, 3, 6, 0]);
20128
20139
  var encodedDataIfcCableFittingTypeEnum = new TextEncoder().encode(".ENTRY..TRANSITION..EXIT..USERDEFINED..JUNCTION..NOTDEFINED..CONNECTOR.");
20129
20140
  var IfcCableFittingTypeEnumSearch = new MinimalPerfectHash(gMapIfcCableFittingTypeEnum, prefixSumAddressIfcCableFittingTypeEnum, slotMapIfcCableFittingTypeEnum, encodedDataIfcCableFittingTypeEnum);
20130
- var parser27 = StepEnumParser.Instance;
20141
+ var parser27 = step_enum_parser_default.Instance;
20131
20142
  function IfcCableFittingTypeEnumDeserializeStep(input, cursor, endCursor) {
20132
20143
  return parser27.extract(IfcCableFittingTypeEnumSearch, input, cursor, endCursor);
20133
20144
  }
@@ -20147,7 +20158,7 @@ var prefixSumAddressIfcCableSegmentTypeEnum = new Uint32Array([0, 13, 31, 43, 57
20147
20158
  var slotMapIfcCableSegmentTypeEnum = new Int32Array([4, 2, 5, 1, 3, 0]);
20148
20159
  var encodedDataIfcCableSegmentTypeEnum = new TextEncoder().encode(".USERDEFINED..CONDUCTORSEGMENT..NOTDEFINED..CABLESEGMENT..CORESEGMENT..BUSBARSEGMENT.");
20149
20160
  var IfcCableSegmentTypeEnumSearch = new MinimalPerfectHash(gMapIfcCableSegmentTypeEnum, prefixSumAddressIfcCableSegmentTypeEnum, slotMapIfcCableSegmentTypeEnum, encodedDataIfcCableSegmentTypeEnum);
20150
- var parser28 = StepEnumParser.Instance;
20161
+ var parser28 = step_enum_parser_default.Instance;
20151
20162
  function IfcCableSegmentTypeEnumDeserializeStep(input, cursor, endCursor) {
20152
20163
  return parser28.extract(IfcCableSegmentTypeEnumSearch, input, cursor, endCursor);
20153
20164
  }
@@ -20166,7 +20177,7 @@ var prefixSumAddressIfcChangeActionEnum = new Uint32Array([0, 10, 22, 32, 39, 48
20166
20177
  var slotMapIfcChangeActionEnum = new Int32Array([0, 4, 1, 2, 3]);
20167
20178
  var encodedDataIfcChangeActionEnum = new TextEncoder().encode(".NOCHANGE..NOTDEFINED..MODIFIED..ADDED..DELETED.");
20168
20179
  var IfcChangeActionEnumSearch = new MinimalPerfectHash(gMapIfcChangeActionEnum, prefixSumAddressIfcChangeActionEnum, slotMapIfcChangeActionEnum, encodedDataIfcChangeActionEnum);
20169
- var parser29 = StepEnumParser.Instance;
20180
+ var parser29 = step_enum_parser_default.Instance;
20170
20181
  function IfcChangeActionEnumDeserializeStep(input, cursor, endCursor) {
20171
20182
  return parser29.extract(IfcChangeActionEnumSearch, input, cursor, endCursor);
20172
20183
  }
@@ -20185,7 +20196,7 @@ var prefixSumAddressIfcChillerTypeEnum = new Uint32Array([0, 13, 25, 36, 49, 63]
20185
20196
  var slotMapIfcChillerTypeEnum = new Int32Array([3, 4, 0, 1, 2]);
20186
20197
  var encodedDataIfcChillerTypeEnum = new TextEncoder().encode(".USERDEFINED..NOTDEFINED..AIRCOOLED..WATERCOOLED..HEATRECOVERY.");
20187
20198
  var IfcChillerTypeEnumSearch = new MinimalPerfectHash(gMapIfcChillerTypeEnum, prefixSumAddressIfcChillerTypeEnum, slotMapIfcChillerTypeEnum, encodedDataIfcChillerTypeEnum);
20188
- var parser30 = StepEnumParser.Instance;
20199
+ var parser30 = step_enum_parser_default.Instance;
20189
20200
  function IfcChillerTypeEnumDeserializeStep(input, cursor, endCursor) {
20190
20201
  return parser30.extract(IfcChillerTypeEnumSearch, input, cursor, endCursor);
20191
20202
  }
@@ -20201,7 +20212,7 @@ var prefixSumAddressIfcChimneyTypeEnum = new Uint32Array([0, 13, 25]);
20201
20212
  var slotMapIfcChimneyTypeEnum = new Int32Array([0, 1]);
20202
20213
  var encodedDataIfcChimneyTypeEnum = new TextEncoder().encode(".USERDEFINED..NOTDEFINED.");
20203
20214
  var IfcChimneyTypeEnumSearch = new MinimalPerfectHash(gMapIfcChimneyTypeEnum, prefixSumAddressIfcChimneyTypeEnum, slotMapIfcChimneyTypeEnum, encodedDataIfcChimneyTypeEnum);
20204
- var parser31 = StepEnumParser.Instance;
20215
+ var parser31 = step_enum_parser_default.Instance;
20205
20216
  function IfcChimneyTypeEnumDeserializeStep(input, cursor, endCursor) {
20206
20217
  return parser31.extract(IfcChimneyTypeEnumSearch, input, cursor, endCursor);
20207
20218
  }
@@ -20224,7 +20235,7 @@ var prefixSumAddressIfcCoilTypeEnum = new Uint32Array([0, 18, 36, 52, 66, 87, 99
20224
20235
  var slotMapIfcCoilTypeEnum = new Int32Array([5, 4, 2, 3, 1, 8, 0, 6, 7]);
20225
20236
  var encodedDataIfcCoilTypeEnum = new TextEncoder().encode(".WATERCOOLINGCOIL..STEAMHEATINGCOIL..GASHEATINGCOIL..HYDRONICCOIL..ELECTRICHEATINGCOIL..NOTDEFINED..DXCOOLINGCOIL..WATERHEATINGCOIL..USERDEFINED.");
20226
20237
  var IfcCoilTypeEnumSearch = new MinimalPerfectHash(gMapIfcCoilTypeEnum, prefixSumAddressIfcCoilTypeEnum, slotMapIfcCoilTypeEnum, encodedDataIfcCoilTypeEnum);
20227
- var parser32 = StepEnumParser.Instance;
20238
+ var parser32 = step_enum_parser_default.Instance;
20228
20239
  function IfcCoilTypeEnumDeserializeStep(input, cursor, endCursor) {
20229
20240
  return parser32.extract(IfcCoilTypeEnumSearch, input, cursor, endCursor);
20230
20241
  }
@@ -20242,7 +20253,7 @@ var prefixSumAddressIfcColumnTypeEnum = new Uint32Array([0, 13, 21, 31, 43]);
20242
20253
  var slotMapIfcColumnTypeEnum = new Int32Array([2, 0, 1, 3]);
20243
20254
  var encodedDataIfcColumnTypeEnum = new TextEncoder().encode(".USERDEFINED..COLUMN..PILASTER..NOTDEFINED.");
20244
20255
  var IfcColumnTypeEnumSearch = new MinimalPerfectHash(gMapIfcColumnTypeEnum, prefixSumAddressIfcColumnTypeEnum, slotMapIfcColumnTypeEnum, encodedDataIfcColumnTypeEnum);
20245
- var parser33 = StepEnumParser.Instance;
20256
+ var parser33 = step_enum_parser_default.Instance;
20246
20257
  function IfcColumnTypeEnumDeserializeStep(input, cursor, endCursor) {
20247
20258
  return parser33.extract(IfcColumnTypeEnumSearch, input, cursor, endCursor);
20248
20259
  }
@@ -20270,7 +20281,7 @@ var prefixSumAddressIfcCommunicationsApplianceTypeEnum = new Uint32Array([0, 9,
20270
20281
  var slotMapIfcCommunicationsApplianceTypeEnum = new Int32Array([3, 7, 2, 11, 6, 12, 13, 1, 5, 9, 10, 0, 4, 8]);
20271
20282
  var encodedDataIfcCommunicationsApplianceTypeEnum = new TextEncoder().encode(".GATEWAY..NETWORKHUB..FAX..SCANNER..NETWORKBRIDGE..USERDEFINED..NOTDEFINED..COMPUTER..NETWORKAPPLIANCE..REPEATER..ROUTER..ANTENNA..MODEM..PRINTER.");
20272
20283
  var IfcCommunicationsApplianceTypeEnumSearch = new MinimalPerfectHash(gMapIfcCommunicationsApplianceTypeEnum, prefixSumAddressIfcCommunicationsApplianceTypeEnum, slotMapIfcCommunicationsApplianceTypeEnum, encodedDataIfcCommunicationsApplianceTypeEnum);
20273
- var parser34 = StepEnumParser.Instance;
20284
+ var parser34 = step_enum_parser_default.Instance;
20274
20285
  function IfcCommunicationsApplianceTypeEnumDeserializeStep(input, cursor, endCursor) {
20275
20286
  return parser34.extract(IfcCommunicationsApplianceTypeEnumSearch, input, cursor, endCursor);
20276
20287
  }
@@ -20286,7 +20297,7 @@ var prefixSumAddressIfcComplexPropertyTemplateTypeEnum = new Uint32Array([0, 11,
20286
20297
  var slotMapIfcComplexPropertyTemplateTypeEnum = new Int32Array([1, 0]);
20287
20298
  var encodedDataIfcComplexPropertyTemplateTypeEnum = new TextEncoder().encode(".Q_COMPLEX..P_COMPLEX.");
20288
20299
  var IfcComplexPropertyTemplateTypeEnumSearch = new MinimalPerfectHash(gMapIfcComplexPropertyTemplateTypeEnum, prefixSumAddressIfcComplexPropertyTemplateTypeEnum, slotMapIfcComplexPropertyTemplateTypeEnum, encodedDataIfcComplexPropertyTemplateTypeEnum);
20289
- var parser35 = StepEnumParser.Instance;
20300
+ var parser35 = step_enum_parser_default.Instance;
20290
20301
  function IfcComplexPropertyTemplateTypeEnumDeserializeStep(input, cursor, endCursor) {
20291
20302
  return parser35.extract(IfcComplexPropertyTemplateTypeEnumSearch, input, cursor, endCursor);
20292
20303
  }
@@ -20317,7 +20328,7 @@ var prefixSumAddressIfcCompressorTypeEnum = new Uint32Array([0, 12, 33, 48, 56,
20317
20328
  var slotMapIfcCompressorTypeEnum = new Int32Array([12, 10, 1, 2, 5, 15, 3, 8, 14, 4, 11, 6, 7, 13, 9, 16, 0]);
20318
20329
  var encodedDataIfcCompressorTypeEnum = new TextEncoder().encode(".ROTARYVANE..WELDEDSHELLHERMETIC..RECIPROCATING..ROTARY..SINGLESTAGE..USERDEFINED..SCROLL..HERMETIC..TWINSCREW..TROCHOIDAL..ROLLINGPISTON..BOOSTER..OPENTYPE..SINGLESCREW..SEMIHERMETIC..NOTDEFINED..DYNAMIC.");
20319
20330
  var IfcCompressorTypeEnumSearch = new MinimalPerfectHash(gMapIfcCompressorTypeEnum, prefixSumAddressIfcCompressorTypeEnum, slotMapIfcCompressorTypeEnum, encodedDataIfcCompressorTypeEnum);
20320
- var parser36 = StepEnumParser.Instance;
20331
+ var parser36 = step_enum_parser_default.Instance;
20321
20332
  function IfcCompressorTypeEnumDeserializeStep(input, cursor, endCursor) {
20322
20333
  return parser36.extract(IfcCompressorTypeEnumSearch, input, cursor, endCursor);
20323
20334
  }
@@ -20340,7 +20351,7 @@ var prefixSumAddressIfcCondenserTypeEnum = new Uint32Array([0, 12, 25, 44, 55, 7
20340
20351
  var slotMapIfcCondenserTypeEnum = new Int32Array([8, 2, 1, 0, 4, 6, 3, 5, 7]);
20341
20352
  var encodedDataIfcCondenserTypeEnum = new TextEncoder().encode(".NOTDEFINED..WATERCOOLED..EVAPORATIVECOOLED..AIRCOOLED..WATERCOOLEDSHELLCOIL..WATERCOOLEDTUBEINTUBE..WATERCOOLEDBRAZEDPLATE..WATERCOOLEDSHELLTUBE..USERDEFINED.");
20342
20353
  var IfcCondenserTypeEnumSearch = new MinimalPerfectHash(gMapIfcCondenserTypeEnum, prefixSumAddressIfcCondenserTypeEnum, slotMapIfcCondenserTypeEnum, encodedDataIfcCondenserTypeEnum);
20343
- var parser37 = StepEnumParser.Instance;
20354
+ var parser37 = step_enum_parser_default.Instance;
20344
20355
  function IfcCondenserTypeEnumDeserializeStep(input, cursor, endCursor) {
20345
20356
  return parser37.extract(IfcCondenserTypeEnumSearch, input, cursor, endCursor);
20346
20357
  }
@@ -20358,7 +20369,7 @@ var prefixSumAddressIfcConnectionTypeEnum = new Uint32Array([0, 9, 16, 28, 36]);
20358
20369
  var slotMapIfcConnectionTypeEnum = new Int32Array([1, 2, 3, 0]);
20359
20370
  var encodedDataIfcConnectionTypeEnum = new TextEncoder().encode(".ATSTART..ATEND..NOTDEFINED..ATPATH.");
20360
20371
  var IfcConnectionTypeEnumSearch = new MinimalPerfectHash(gMapIfcConnectionTypeEnum, prefixSumAddressIfcConnectionTypeEnum, slotMapIfcConnectionTypeEnum, encodedDataIfcConnectionTypeEnum);
20361
- var parser38 = StepEnumParser.Instance;
20372
+ var parser38 = step_enum_parser_default.Instance;
20362
20373
  function IfcConnectionTypeEnumDeserializeStep(input, cursor, endCursor) {
20363
20374
  return parser38.extract(IfcConnectionTypeEnumSearch, input, cursor, endCursor);
20364
20375
  }
@@ -20377,7 +20388,7 @@ var prefixSumAddressIfcConstraintEnum = new Uint32Array([0, 13, 19, 29, 35, 47])
20377
20388
  var slotMapIfcConstraintEnum = new Int32Array([3, 1, 2, 0, 4]);
20378
20389
  var encodedDataIfcConstraintEnum = new TextEncoder().encode(".USERDEFINED..SOFT..ADVISORY..HARD..NOTDEFINED.");
20379
20390
  var IfcConstraintEnumSearch = new MinimalPerfectHash(gMapIfcConstraintEnum, prefixSumAddressIfcConstraintEnum, slotMapIfcConstraintEnum, encodedDataIfcConstraintEnum);
20380
- var parser39 = StepEnumParser.Instance;
20391
+ var parser39 = step_enum_parser_default.Instance;
20381
20392
  function IfcConstraintEnumDeserializeStep(input, cursor, endCursor) {
20382
20393
  return parser39.extract(IfcConstraintEnumSearch, input, cursor, endCursor);
20383
20394
  }
@@ -20401,7 +20412,7 @@ var prefixSumAddressIfcConstructionEquipmentResourceTypeEnum = new Uint32Array([
20401
20412
  var slotMapIfcConstructionEquipmentResourceTypeEnum = new Int32Array([3, 1, 8, 2, 6, 5, 4, 7, 9, 0]);
20402
20413
  var encodedDataIfcConstructionEquipmentResourceTypeEnum = new TextEncoder().encode(".HEATING..EARTHMOVING..USERDEFINED..ERECTING..PUMPING..PAVING..LIGHTING..TRANSPORTING..NOTDEFINED..DEMOLISHING.");
20403
20414
  var IfcConstructionEquipmentResourceTypeEnumSearch = new MinimalPerfectHash(gMapIfcConstructionEquipmentResourceTypeEnum, prefixSumAddressIfcConstructionEquipmentResourceTypeEnum, slotMapIfcConstructionEquipmentResourceTypeEnum, encodedDataIfcConstructionEquipmentResourceTypeEnum);
20404
- var parser40 = StepEnumParser.Instance;
20415
+ var parser40 = step_enum_parser_default.Instance;
20405
20416
  function IfcConstructionEquipmentResourceTypeEnumDeserializeStep(input, cursor, endCursor) {
20406
20417
  return parser40.extract(IfcConstructionEquipmentResourceTypeEnumSearch, input, cursor, endCursor);
20407
20418
  }
@@ -20426,7 +20437,7 @@ var prefixSumAddressIfcConstructionMaterialResourceTypeEnum = new Uint32Array([0
20426
20437
  var slotMapIfcConstructionMaterialResourceTypeEnum = new Int32Array([8, 1, 10, 4, 5, 7, 0, 2, 3, 6, 9]);
20427
20438
  var encodedDataIfcConstructionMaterialResourceTypeEnum = new TextEncoder().encode(".WOOD..CONCRETE..USERDEFINED..GYPSUM..MASONRY..PLASTIC..AGGREGATES..DRYWALL..FUEL..METAL..NOTDEFINED.");
20428
20439
  var IfcConstructionMaterialResourceTypeEnumSearch = new MinimalPerfectHash(gMapIfcConstructionMaterialResourceTypeEnum, prefixSumAddressIfcConstructionMaterialResourceTypeEnum, slotMapIfcConstructionMaterialResourceTypeEnum, encodedDataIfcConstructionMaterialResourceTypeEnum);
20429
- var parser41 = StepEnumParser.Instance;
20440
+ var parser41 = step_enum_parser_default.Instance;
20430
20441
  function IfcConstructionMaterialResourceTypeEnumDeserializeStep(input, cursor, endCursor) {
20431
20442
  return parser41.extract(IfcConstructionMaterialResourceTypeEnumSearch, input, cursor, endCursor);
20432
20443
  }
@@ -20444,7 +20455,7 @@ var prefixSumAddressIfcConstructionProductResourceTypeEnum = new Uint32Array([0,
20444
20455
  var slotMapIfcConstructionProductResourceTypeEnum = new Int32Array([2, 1, 0, 3]);
20445
20456
  var encodedDataIfcConstructionProductResourceTypeEnum = new TextEncoder().encode(".USERDEFINED..FORMWORK..ASSEMBLY..NOTDEFINED.");
20446
20457
  var IfcConstructionProductResourceTypeEnumSearch = new MinimalPerfectHash(gMapIfcConstructionProductResourceTypeEnum, prefixSumAddressIfcConstructionProductResourceTypeEnum, slotMapIfcConstructionProductResourceTypeEnum, encodedDataIfcConstructionProductResourceTypeEnum);
20447
- var parser42 = StepEnumParser.Instance;
20458
+ var parser42 = step_enum_parser_default.Instance;
20448
20459
  function IfcConstructionProductResourceTypeEnumDeserializeStep(input, cursor, endCursor) {
20449
20460
  return parser42.extract(IfcConstructionProductResourceTypeEnumSearch, input, cursor, endCursor);
20450
20461
  }
@@ -20465,7 +20476,7 @@ var prefixSumAddressIfcControllerTypeEnum = new Uint32Array([0, 13, 27, 39, 54,
20465
20476
  var slotMapIfcControllerTypeEnum = new Int32Array([4, 1, 6, 3, 5, 2, 0]);
20466
20477
  var encodedDataIfcControllerTypeEnum = new TextEncoder().encode(".TWOPOSITION..PROGRAMMABLE..NOTDEFINED..MULTIPOSITION..USERDEFINED..PROPORTIONAL..FLOATING.");
20467
20478
  var IfcControllerTypeEnumSearch = new MinimalPerfectHash(gMapIfcControllerTypeEnum, prefixSumAddressIfcControllerTypeEnum, slotMapIfcControllerTypeEnum, encodedDataIfcControllerTypeEnum);
20468
- var parser43 = StepEnumParser.Instance;
20479
+ var parser43 = step_enum_parser_default.Instance;
20469
20480
  function IfcControllerTypeEnumDeserializeStep(input, cursor, endCursor) {
20470
20481
  return parser43.extract(IfcControllerTypeEnumSearch, input, cursor, endCursor);
20471
20482
  }
@@ -20483,7 +20494,7 @@ var prefixSumAddressIfcCooledBeamTypeEnum = new Uint32Array([0, 8, 21, 30, 42]);
20483
20494
  var slotMapIfcCooledBeamTypeEnum = new Int32Array([0, 2, 1, 3]);
20484
20495
  var encodedDataIfcCooledBeamTypeEnum = new TextEncoder().encode(".ACTIVE..USERDEFINED..PASSIVE..NOTDEFINED.");
20485
20496
  var IfcCooledBeamTypeEnumSearch = new MinimalPerfectHash(gMapIfcCooledBeamTypeEnum, prefixSumAddressIfcCooledBeamTypeEnum, slotMapIfcCooledBeamTypeEnum, encodedDataIfcCooledBeamTypeEnum);
20486
- var parser44 = StepEnumParser.Instance;
20497
+ var parser44 = step_enum_parser_default.Instance;
20487
20498
  function IfcCooledBeamTypeEnumDeserializeStep(input, cursor, endCursor) {
20488
20499
  return parser44.extract(IfcCooledBeamTypeEnumSearch, input, cursor, endCursor);
20489
20500
  }
@@ -20502,7 +20513,7 @@ var prefixSumAddressIfcCoolingTowerTypeEnum = new Uint32Array([0, 24, 47, 59, 72
20502
20513
  var slotMapIfcCoolingTowerTypeEnum = new Int32Array([1, 2, 4, 3, 0]);
20503
20514
  var encodedDataIfcCoolingTowerTypeEnum = new TextEncoder().encode(".MECHANICALINDUCEDDRAFT..MECHANICALFORCEDDRAFT..NOTDEFINED..USERDEFINED..NATURALDRAFT.");
20504
20515
  var IfcCoolingTowerTypeEnumSearch = new MinimalPerfectHash(gMapIfcCoolingTowerTypeEnum, prefixSumAddressIfcCoolingTowerTypeEnum, slotMapIfcCoolingTowerTypeEnum, encodedDataIfcCoolingTowerTypeEnum);
20505
- var parser45 = StepEnumParser.Instance;
20516
+ var parser45 = step_enum_parser_default.Instance;
20506
20517
  function IfcCoolingTowerTypeEnumDeserializeStep(input, cursor, endCursor) {
20507
20518
  return parser45.extract(IfcCoolingTowerTypeEnumSearch, input, cursor, endCursor);
20508
20519
  }
@@ -20518,7 +20529,7 @@ var prefixSumAddressIfcCostItemTypeEnum = new Uint32Array([0, 13, 25]);
20518
20529
  var slotMapIfcCostItemTypeEnum = new Int32Array([0, 1]);
20519
20530
  var encodedDataIfcCostItemTypeEnum = new TextEncoder().encode(".USERDEFINED..NOTDEFINED.");
20520
20531
  var IfcCostItemTypeEnumSearch = new MinimalPerfectHash(gMapIfcCostItemTypeEnum, prefixSumAddressIfcCostItemTypeEnum, slotMapIfcCostItemTypeEnum, encodedDataIfcCostItemTypeEnum);
20521
- var parser46 = StepEnumParser.Instance;
20532
+ var parser46 = step_enum_parser_default.Instance;
20522
20533
  function IfcCostItemTypeEnumDeserializeStep(input, cursor, endCursor) {
20523
20534
  return parser46.extract(IfcCostItemTypeEnumSearch, input, cursor, endCursor);
20524
20535
  }
@@ -20541,7 +20552,7 @@ var prefixSumAddressIfcCostScheduleTypeEnum = new Uint32Array([0, 8, 25, 49, 57,
20541
20552
  var slotMapIfcCostScheduleTypeEnum = new Int32Array([3, 6, 4, 0, 5, 8, 1, 2, 7]);
20542
20553
  var encodedDataIfcCostScheduleTypeEnum = new TextEncoder().encode(".TENDER..SCHEDULEOFRATES..PRICEDBILLOFQUANTITIES..BUDGET..UNPRICEDBILLOFQUANTITIES..NOTDEFINED..COSTPLAN..ESTIMATE..USERDEFINED.");
20543
20554
  var IfcCostScheduleTypeEnumSearch = new MinimalPerfectHash(gMapIfcCostScheduleTypeEnum, prefixSumAddressIfcCostScheduleTypeEnum, slotMapIfcCostScheduleTypeEnum, encodedDataIfcCostScheduleTypeEnum);
20544
- var parser47 = StepEnumParser.Instance;
20555
+ var parser47 = step_enum_parser_default.Instance;
20545
20556
  function IfcCostScheduleTypeEnumDeserializeStep(input, cursor, endCursor) {
20546
20557
  return parser47.extract(IfcCostScheduleTypeEnumSearch, input, cursor, endCursor);
20547
20558
  }
@@ -20567,7 +20578,7 @@ var prefixSumAddressIfcCoveringTypeEnum = new Uint32Array([0, 10, 19, 28, 41, 50
20567
20578
  var slotMapIfcCoveringTypeEnum = new Int32Array([8, 0, 3, 10, 4, 6, 2, 11, 5, 9, 1, 7]);
20568
20579
  var encodedDataIfcCoveringTypeEnum = new TextEncoder().encode(".SLEEVING..CEILING..ROOFING..USERDEFINED..MOLDING..INSULATION..CLADDING..NOTDEFINED..SKIRTINGBOARD..WRAPPING..FLOORING..MEMBRANE.");
20569
20580
  var IfcCoveringTypeEnumSearch = new MinimalPerfectHash(gMapIfcCoveringTypeEnum, prefixSumAddressIfcCoveringTypeEnum, slotMapIfcCoveringTypeEnum, encodedDataIfcCoveringTypeEnum);
20570
- var parser48 = StepEnumParser.Instance;
20581
+ var parser48 = step_enum_parser_default.Instance;
20571
20582
  function IfcCoveringTypeEnumDeserializeStep(input, cursor, endCursor) {
20572
20583
  return parser48.extract(IfcCoveringTypeEnumSearch, input, cursor, endCursor);
20573
20584
  }
@@ -20585,7 +20596,7 @@ var prefixSumAddressIfcCrewResourceTypeEnum = new Uint32Array([0, 12, 18, 26, 39
20585
20596
  var slotMapIfcCrewResourceTypeEnum = new Int32Array([3, 1, 0, 2]);
20586
20597
  var encodedDataIfcCrewResourceTypeEnum = new TextEncoder().encode(".NOTDEFINED..SITE..OFFICE..USERDEFINED.");
20587
20598
  var IfcCrewResourceTypeEnumSearch = new MinimalPerfectHash(gMapIfcCrewResourceTypeEnum, prefixSumAddressIfcCrewResourceTypeEnum, slotMapIfcCrewResourceTypeEnum, encodedDataIfcCrewResourceTypeEnum);
20588
- var parser49 = StepEnumParser.Instance;
20599
+ var parser49 = step_enum_parser_default.Instance;
20589
20600
  function IfcCrewResourceTypeEnumDeserializeStep(input, cursor, endCursor) {
20590
20601
  return parser49.extract(IfcCrewResourceTypeEnumSearch, input, cursor, endCursor);
20591
20602
  }
@@ -20601,7 +20612,7 @@ var prefixSumAddressIfcCurtainWallTypeEnum = new Uint32Array([0, 13, 25]);
20601
20612
  var slotMapIfcCurtainWallTypeEnum = new Int32Array([0, 1]);
20602
20613
  var encodedDataIfcCurtainWallTypeEnum = new TextEncoder().encode(".USERDEFINED..NOTDEFINED.");
20603
20614
  var IfcCurtainWallTypeEnumSearch = new MinimalPerfectHash(gMapIfcCurtainWallTypeEnum, prefixSumAddressIfcCurtainWallTypeEnum, slotMapIfcCurtainWallTypeEnum, encodedDataIfcCurtainWallTypeEnum);
20604
- var parser50 = StepEnumParser.Instance;
20615
+ var parser50 = step_enum_parser_default.Instance;
20605
20616
  function IfcCurtainWallTypeEnumDeserializeStep(input, cursor, endCursor) {
20606
20617
  return parser50.extract(IfcCurtainWallTypeEnumSearch, input, cursor, endCursor);
20607
20618
  }
@@ -20619,7 +20630,7 @@ var prefixSumAddressIfcCurveInterpolationEnum = new Uint32Array([0, 9, 21, 29, 4
20619
20630
  var slotMapIfcCurveInterpolationEnum = new Int32Array([2, 3, 0, 1]);
20620
20631
  var encodedDataIfcCurveInterpolationEnum = new TextEncoder().encode(".LOG_LOG..NOTDEFINED..LINEAR..LOG_LINEAR.");
20621
20632
  var IfcCurveInterpolationEnumSearch = new MinimalPerfectHash(gMapIfcCurveInterpolationEnum, prefixSumAddressIfcCurveInterpolationEnum, slotMapIfcCurveInterpolationEnum, encodedDataIfcCurveInterpolationEnum);
20622
- var parser51 = StepEnumParser.Instance;
20633
+ var parser51 = step_enum_parser_default.Instance;
20623
20634
  function IfcCurveInterpolationEnumDeserializeStep(input, cursor, endCursor) {
20624
20635
  return parser51.extract(IfcCurveInterpolationEnumSearch, input, cursor, endCursor);
20625
20636
  }
@@ -20646,7 +20657,7 @@ var prefixSumAddressIfcDamperTypeEnum = new Uint32Array([0, 15, 32, 49, 62, 74,
20646
20657
  var slotMapIfcDamperTypeEnum = new Int32Array([7, 1, 6, 10, 4, 9, 0, 3, 11, 2, 12, 5, 8]);
20647
20658
  var encodedDataIfcDamperTypeEnum = new TextEncoder().encode(".GRAVITYDAMPER..BALANCINGDAMPER..FUMEHOODEXHAUST..SMOKEDAMPER..FIREDAMPER..RELIEFDAMPER..BACKDRAFTDAMPER..CONTROLDAMPER..USERDEFINED..BLASTDAMPER..NOTDEFINED..FIRESMOKEDAMPER..GRAVITYRELIEFDAMPER.");
20648
20659
  var IfcDamperTypeEnumSearch = new MinimalPerfectHash(gMapIfcDamperTypeEnum, prefixSumAddressIfcDamperTypeEnum, slotMapIfcDamperTypeEnum, encodedDataIfcDamperTypeEnum);
20649
- var parser52 = StepEnumParser.Instance;
20660
+ var parser52 = step_enum_parser_default.Instance;
20650
20661
  function IfcDamperTypeEnumDeserializeStep(input, cursor, endCursor) {
20651
20662
  return parser52.extract(IfcDamperTypeEnumSearch, input, cursor, endCursor);
20652
20663
  }
@@ -20665,7 +20676,7 @@ var prefixSumAddressIfcDataOriginEnum = new Uint32Array([0, 11, 21, 33, 44, 57])
20665
20676
  var slotMapIfcDataOriginEnum = new Int32Array([2, 0, 4, 1, 3]);
20666
20677
  var encodedDataIfcDataOriginEnum = new TextEncoder().encode(".SIMULATED..MEASURED..NOTDEFINED..PREDICTED..USERDEFINED.");
20667
20678
  var IfcDataOriginEnumSearch = new MinimalPerfectHash(gMapIfcDataOriginEnum, prefixSumAddressIfcDataOriginEnum, slotMapIfcDataOriginEnum, encodedDataIfcDataOriginEnum);
20668
- var parser53 = StepEnumParser.Instance;
20679
+ var parser53 = step_enum_parser_default.Instance;
20669
20680
  function IfcDataOriginEnumDeserializeStep(input, cursor, endCursor) {
20670
20681
  return parser53.extract(IfcDataOriginEnumSearch, input, cursor, endCursor);
20671
20682
  }
@@ -20732,7 +20743,7 @@ var prefixSumAddressIfcDerivedUnitEnum = new Uint32Array([0, 25, 44, 66, 84, 109
20732
20743
  var slotMapIfcDerivedUnitEnum = new Int32Array([41, 46, 34, 23, 29, 43, 27, 19, 48, 12, 9, 3, 5, 2, 30, 51, 47, 21, 18, 22, 28, 45, 33, 52, 14, 16, 26, 36, 25, 7, 17, 20, 8, 1, 32, 38, 11, 31, 37, 49, 44, 24, 35, 6, 4, 40, 42, 50, 13, 15, 0, 39, 10]);
20733
20744
  var encodedDataIfcDerivedUnitEnum = new TextEncoder().encode(".SECTIONAREAINTEGRALUNIT..SOUNDPRESSUREUNIT..IONCONCENTRATIONUNIT..LINEARMOMENTUNIT..ROTATIONALSTIFFNESSUNIT..SOUNDPOWERLEVELUNIT..SHEARMODULUSUNIT..VOLUMETRICFLOWRATEUNIT..TEMPERATURERATEOFCHANGEUNIT..MOLECULARWEIGHTUNIT..MASSDENSITYUNIT..DYNAMICVISCOSITYUNIT..INTEGERCOUNTRATEUNIT..COMPOUNDPLANEANGLEUNIT..MODULUSOFSUBGRADEREACTIONUNIT..WARPINGMOMENTUNIT..TEMPERATUREGRADIENTUNIT..TORQUEUNIT..VAPORPERMEABILITYUNIT..MOMENTOFINERTIAUNIT..LINEARSTIFFNESSUNIT..SOUNDPRESSURELEVELUNIT..HEATINGVALUEUNIT..USERDEFINED..THERMALADMITTANCEUNIT..THERMALRESISTANCEUNIT..MODULUSOFELASTICITYUNIT..MASSPERLENGTHUNIT..PLANARFORCEUNIT..KINEMATICVISCOSITYUNIT..THERMALTRANSMITTANCEUNIT..ROTATIONALFREQUENCYUNIT..LINEARVELOCITYUNIT..AREADENSITYUNIT..CURVATUREUNIT..MODULUSOFROTATIONALSUBGRADEREACTIONUNIT..MOISTUREDIFFUSIVITYUNIT..ACCELERATIONUNIT..MODULUSOFLINEARSUBGRADEREACTIONUNIT..THERMALEXPANSIONCOEFFICIENTUNIT..SOUNDPOWERUNIT..LINEARFORCEUNIT..LUMINOUSINTENSITYDISTRIBUTIONUNIT..ISOTHERMALMOISTURECAPACITYUNIT..HEATFLUXDENSITYUNIT..ROTATIONALMASSUNIT..SECTIONMODULUSUNIT..WARPINGCONSTANTUNIT..SPECIFICHEATCAPACITYUNIT..THERMALCONDUCTANCEUNIT..ANGULARVELOCITYUNIT..PHUNIT..MASSFLOWRATEUNIT.");
20734
20745
  var IfcDerivedUnitEnumSearch = new MinimalPerfectHash(gMapIfcDerivedUnitEnum, prefixSumAddressIfcDerivedUnitEnum, slotMapIfcDerivedUnitEnum, encodedDataIfcDerivedUnitEnum);
20735
- var parser54 = StepEnumParser.Instance;
20746
+ var parser54 = step_enum_parser_default.Instance;
20736
20747
  function IfcDerivedUnitEnumDeserializeStep(input, cursor, endCursor) {
20737
20748
  return parser54.extract(IfcDerivedUnitEnumSearch, input, cursor, endCursor);
20738
20749
  }
@@ -20748,7 +20759,7 @@ var prefixSumAddressIfcDirectionSenseEnum = new Uint32Array([0, 10, 20]);
20748
20759
  var slotMapIfcDirectionSenseEnum = new Int32Array([1, 0]);
20749
20760
  var encodedDataIfcDirectionSenseEnum = new TextEncoder().encode(".NEGATIVE..POSITIVE.");
20750
20761
  var IfcDirectionSenseEnumSearch = new MinimalPerfectHash(gMapIfcDirectionSenseEnum, prefixSumAddressIfcDirectionSenseEnum, slotMapIfcDirectionSenseEnum, encodedDataIfcDirectionSenseEnum);
20751
- var parser55 = StepEnumParser.Instance;
20762
+ var parser55 = step_enum_parser_default.Instance;
20752
20763
  function IfcDirectionSenseEnumDeserializeStep(input, cursor, endCursor) {
20753
20764
  return parser55.extract(IfcDirectionSenseEnumSearch, input, cursor, endCursor);
20754
20765
  }
@@ -20767,7 +20778,7 @@ var prefixSumAddressIfcDiscreteAccessoryTypeEnum = new Uint32Array([0, 13, 19, 2
20767
20778
  var slotMapIfcDiscreteAccessoryTypeEnum = new Int32Array([0, 2, 1, 3, 4]);
20768
20779
  var encodedDataIfcDiscreteAccessoryTypeEnum = new TextEncoder().encode(".ANCHORPLATE..SHOE..BRACKET..USERDEFINED..NOTDEFINED.");
20769
20780
  var IfcDiscreteAccessoryTypeEnumSearch = new MinimalPerfectHash(gMapIfcDiscreteAccessoryTypeEnum, prefixSumAddressIfcDiscreteAccessoryTypeEnum, slotMapIfcDiscreteAccessoryTypeEnum, encodedDataIfcDiscreteAccessoryTypeEnum);
20770
- var parser56 = StepEnumParser.Instance;
20781
+ var parser56 = step_enum_parser_default.Instance;
20771
20782
  function IfcDiscreteAccessoryTypeEnumDeserializeStep(input, cursor, endCursor) {
20772
20783
  return parser56.extract(IfcDiscreteAccessoryTypeEnumSearch, input, cursor, endCursor);
20773
20784
  }
@@ -20791,7 +20802,7 @@ var prefixSumAddressIfcDistributionChamberElementTypeEnum = new Uint32Array([0,
20791
20802
  var slotMapIfcDistributionChamberElementTypeEnum = new Int32Array([4, 9, 7, 2, 6, 8, 5, 3, 1, 0]);
20792
20803
  var encodedDataIfcDistributionChamberElementTypeEnum = new TextEncoder().encode(".METERCHAMBER..NOTDEFINED..VALVECHAMBER..INSPECTIONPIT..TRENCH..USERDEFINED..SUMP..MANHOLE..INSPECTIONCHAMBER..FORMEDDUCT.");
20793
20804
  var IfcDistributionChamberElementTypeEnumSearch = new MinimalPerfectHash(gMapIfcDistributionChamberElementTypeEnum, prefixSumAddressIfcDistributionChamberElementTypeEnum, slotMapIfcDistributionChamberElementTypeEnum, encodedDataIfcDistributionChamberElementTypeEnum);
20794
- var parser57 = StepEnumParser.Instance;
20805
+ var parser57 = step_enum_parser_default.Instance;
20795
20806
  function IfcDistributionChamberElementTypeEnumDeserializeStep(input, cursor, endCursor) {
20796
20807
  return parser57.extract(IfcDistributionChamberElementTypeEnumSearch, input, cursor, endCursor);
20797
20808
  }
@@ -20811,7 +20822,7 @@ var prefixSumAddressIfcDistributionPortTypeEnum = new Uint32Array([0, 6, 13, 26,
20811
20822
  var slotMapIfcDistributionPortTypeEnum = new Int32Array([2, 0, 4, 5, 1, 3]);
20812
20823
  var encodedDataIfcDistributionPortTypeEnum = new TextEncoder().encode(".DUCT..CABLE..USERDEFINED..NOTDEFINED..CABLECARRIER..PIPE.");
20813
20824
  var IfcDistributionPortTypeEnumSearch = new MinimalPerfectHash(gMapIfcDistributionPortTypeEnum, prefixSumAddressIfcDistributionPortTypeEnum, slotMapIfcDistributionPortTypeEnum, encodedDataIfcDistributionPortTypeEnum);
20814
- var parser58 = StepEnumParser.Instance;
20825
+ var parser58 = step_enum_parser_default.Instance;
20815
20826
  function IfcDistributionPortTypeEnumDeserializeStep(input, cursor, endCursor) {
20816
20827
  return parser58.extract(IfcDistributionPortTypeEnumSearch, input, cursor, endCursor);
20817
20828
  }
@@ -20869,7 +20880,7 @@ var prefixSumAddressIfcDistributionSystemEnum = new Uint32Array([0, 11, 19, 34,
20869
20880
  var slotMapIfcDistributionSystemEnum = new Int32Array([21, 37, 5, 16, 34, 24, 13, 28, 11, 39, 41, 17, 19, 7, 43, 40, 18, 23, 3, 35, 12, 33, 27, 0, 8, 29, 26, 30, 38, 10, 36, 9, 14, 31, 20, 32, 15, 42, 2, 25, 1, 22, 6, 4]);
20870
20881
  var encodedDataIfcDistributionSystemEnum = new TextEncoder().encode(".HAZARDOUS..VACUUM..COMPRESSEDAIR..ELECTROACOUSTIC..STORMWATER..LIGHTNINGPROTECTION..DRAINAGE..POWERGENERATION..DOMESTICCOLDWATER..VENTILATION..WATERSUPPLY..EXHAUST..FUEL..CONTROL..NOTDEFINED..WASTEWATER..FIREPROTECTION..LIGHTING..CHILLEDWATER..TELEPHONE..DOMESTICHOTWATER..SIGNAL..OPERATIONAL..AIRCONDITIONING..CONVEYING..RAINWATER..OIL..REFRIGERATION..VENT..DISPOSAL..TV..DATA..EARTHING..SECURITY..GAS..SEWAGE..ELECTRICAL..USERDEFINED..CHEMICAL..MUNICIPALSOLIDWASTE..AUDIOVISUAL..HEATING..CONDENSERWATER..COMMUNICATION.");
20871
20882
  var IfcDistributionSystemEnumSearch = new MinimalPerfectHash(gMapIfcDistributionSystemEnum, prefixSumAddressIfcDistributionSystemEnum, slotMapIfcDistributionSystemEnum, encodedDataIfcDistributionSystemEnum);
20872
- var parser59 = StepEnumParser.Instance;
20883
+ var parser59 = step_enum_parser_default.Instance;
20873
20884
  function IfcDistributionSystemEnumDeserializeStep(input, cursor, endCursor) {
20874
20885
  return parser59.extract(IfcDistributionSystemEnumSearch, input, cursor, endCursor);
20875
20886
  }
@@ -20889,7 +20900,7 @@ var prefixSumAddressIfcDocumentConfidentialityEnum = new Uint32Array([0, 12, 24,
20889
20900
  var slotMapIfcDocumentConfidentialityEnum = new Int32Array([5, 1, 4, 2, 0, 3]);
20890
20901
  var encodedDataIfcDocumentConfidentialityEnum = new TextEncoder().encode(".NOTDEFINED..RESTRICTED..USERDEFINED..CONFIDENTIAL..PUBLIC..PERSONAL.");
20891
20902
  var IfcDocumentConfidentialityEnumSearch = new MinimalPerfectHash(gMapIfcDocumentConfidentialityEnum, prefixSumAddressIfcDocumentConfidentialityEnum, slotMapIfcDocumentConfidentialityEnum, encodedDataIfcDocumentConfidentialityEnum);
20892
- var parser60 = StepEnumParser.Instance;
20903
+ var parser60 = step_enum_parser_default.Instance;
20893
20904
  function IfcDocumentConfidentialityEnumDeserializeStep(input, cursor, endCursor) {
20894
20905
  return parser60.extract(IfcDocumentConfidentialityEnumSearch, input, cursor, endCursor);
20895
20906
  }
@@ -20908,7 +20919,7 @@ var prefixSumAddressIfcDocumentStatusEnum = new Uint32Array([0, 7, 19, 29, 41, 4
20908
20919
  var slotMapIfcDocumentStatusEnum = new Int32Array([0, 4, 3, 1, 2]);
20909
20920
  var encodedDataIfcDocumentStatusEnum = new TextEncoder().encode(".DRAFT..NOTDEFINED..REVISION..FINALDRAFT..FINAL.");
20910
20921
  var IfcDocumentStatusEnumSearch = new MinimalPerfectHash(gMapIfcDocumentStatusEnum, prefixSumAddressIfcDocumentStatusEnum, slotMapIfcDocumentStatusEnum, encodedDataIfcDocumentStatusEnum);
20911
- var parser61 = StepEnumParser.Instance;
20922
+ var parser61 = step_enum_parser_default.Instance;
20912
20923
  function IfcDocumentStatusEnumDeserializeStep(input, cursor, endCursor) {
20913
20924
  return parser61.extract(IfcDocumentStatusEnumSearch, input, cursor, endCursor);
20914
20925
  }
@@ -20931,7 +20942,7 @@ var prefixSumAddressIfcDoorPanelOperationEnum = new Uint32Array([0, 10, 19, 28,
20931
20942
  var slotMapIfcDoorPanelOperationEnum = new Int32Array([0, 3, 2, 8, 4, 1, 6, 5, 7]);
20932
20943
  var encodedDataIfcDoorPanelOperationEnum = new TextEncoder().encode(".SWINGING..FOLDING..SLIDING..NOTDEFINED..REVOLVING..DOUBLE_ACTING..FIXEDPANEL..ROLLINGUP..USERDEFINED.");
20933
20944
  var IfcDoorPanelOperationEnumSearch = new MinimalPerfectHash(gMapIfcDoorPanelOperationEnum, prefixSumAddressIfcDoorPanelOperationEnum, slotMapIfcDoorPanelOperationEnum, encodedDataIfcDoorPanelOperationEnum);
20934
- var parser62 = StepEnumParser.Instance;
20945
+ var parser62 = step_enum_parser_default.Instance;
20935
20946
  function IfcDoorPanelOperationEnumDeserializeStep(input, cursor, endCursor) {
20936
20947
  return parser62.extract(IfcDoorPanelOperationEnumSearch, input, cursor, endCursor);
20937
20948
  }
@@ -20949,7 +20960,7 @@ var prefixSumAddressIfcDoorPanelPositionEnum = new Uint32Array([0, 12, 19, 27, 3
20949
20960
  var slotMapIfcDoorPanelPositionEnum = new Int32Array([3, 2, 1, 0]);
20950
20961
  var encodedDataIfcDoorPanelPositionEnum = new TextEncoder().encode(".NOTDEFINED..RIGHT..MIDDLE..LEFT.");
20951
20962
  var IfcDoorPanelPositionEnumSearch = new MinimalPerfectHash(gMapIfcDoorPanelPositionEnum, prefixSumAddressIfcDoorPanelPositionEnum, slotMapIfcDoorPanelPositionEnum, encodedDataIfcDoorPanelPositionEnum);
20952
- var parser63 = StepEnumParser.Instance;
20963
+ var parser63 = step_enum_parser_default.Instance;
20953
20964
  function IfcDoorPanelPositionEnumDeserializeStep(input, cursor, endCursor) {
20954
20965
  return parser63.extract(IfcDoorPanelPositionEnumSearch, input, cursor, endCursor);
20955
20966
  }
@@ -20972,7 +20983,7 @@ var prefixSumAddressIfcDoorStyleConstructionEnum = new Uint32Array([0, 11, 29, 3
20972
20983
  var slotMapIfcDoorStyleConstructionEnum = new Int32Array([0, 1, 6, 7, 3, 2, 8, 4, 5]);
20973
20984
  var encodedDataIfcDoorStyleConstructionEnum = new TextEncoder().encode(".ALUMINIUM..HIGH_GRADE_STEEL..PLASTIC..USERDEFINED..WOOD..STEEL..NOTDEFINED..ALUMINIUM_WOOD..ALUMINIUM_PLASTIC.");
20974
20985
  var IfcDoorStyleConstructionEnumSearch = new MinimalPerfectHash(gMapIfcDoorStyleConstructionEnum, prefixSumAddressIfcDoorStyleConstructionEnum, slotMapIfcDoorStyleConstructionEnum, encodedDataIfcDoorStyleConstructionEnum);
20975
- var parser64 = StepEnumParser.Instance;
20986
+ var parser64 = step_enum_parser_default.Instance;
20976
20987
  function IfcDoorStyleConstructionEnumDeserializeStep(input, cursor, endCursor) {
20977
20988
  return parser64.extract(IfcDoorStyleConstructionEnumSearch, input, cursor, endCursor);
20978
20989
  }
@@ -21004,7 +21015,7 @@ var prefixSumAddressIfcDoorStyleOperationEnum = new Uint32Array([0, 26, 47, 59,
21004
21015
  var slotMapIfcDoorStyleOperationEnum = new Int32Array([7, 13, 17, 16, 14, 2, 6, 5, 10, 1, 11, 0, 12, 9, 4, 8, 3, 15]);
21005
21016
  var encodedDataIfcDoorStyleOperationEnum = new TextEncoder().encode(".DOUBLE_DOOR_DOUBLE_SWING..DOUBLE_DOOR_FOLDING..NOTDEFINED..USERDEFINED..REVOLVING..DOUBLE_DOOR_SINGLE_SWING..DOUBLE_SWING_RIGHT..DOUBLE_SWING_LEFT..DOUBLE_DOOR_SLIDING..SINGLE_SWING_RIGHT..FOLDING_TO_LEFT..SINGLE_SWING_LEFT..FOLDING_TO_RIGHT..SLIDING_TO_RIGHT..DOUBLE_DOOR_SINGLE_SWING_OPPOSITE_RIGHT..SLIDING_TO_LEFT..DOUBLE_DOOR_SINGLE_SWING_OPPOSITE_LEFT..ROLLINGUP.");
21006
21017
  var IfcDoorStyleOperationEnumSearch = new MinimalPerfectHash(gMapIfcDoorStyleOperationEnum, prefixSumAddressIfcDoorStyleOperationEnum, slotMapIfcDoorStyleOperationEnum, encodedDataIfcDoorStyleOperationEnum);
21007
- var parser65 = StepEnumParser.Instance;
21018
+ var parser65 = step_enum_parser_default.Instance;
21008
21019
  function IfcDoorStyleOperationEnumDeserializeStep(input, cursor, endCursor) {
21009
21020
  return parser65.extract(IfcDoorStyleOperationEnumSearch, input, cursor, endCursor);
21010
21021
  }
@@ -21023,7 +21034,7 @@ var prefixSumAddressIfcDoorTypeEnum = new Uint32Array([0, 6, 19, 29, 35, 47]);
21023
21034
  var slotMapIfcDoorTypeEnum = new Int32Array([1, 3, 2, 0, 4]);
21024
21035
  var encodedDataIfcDoorTypeEnum = new TextEncoder().encode(".GATE..USERDEFINED..TRAPDOOR..DOOR..NOTDEFINED.");
21025
21036
  var IfcDoorTypeEnumSearch = new MinimalPerfectHash(gMapIfcDoorTypeEnum, prefixSumAddressIfcDoorTypeEnum, slotMapIfcDoorTypeEnum, encodedDataIfcDoorTypeEnum);
21026
- var parser66 = StepEnumParser.Instance;
21037
+ var parser66 = step_enum_parser_default.Instance;
21027
21038
  function IfcDoorTypeEnumDeserializeStep(input, cursor, endCursor) {
21028
21039
  return parser66.extract(IfcDoorTypeEnumSearch, input, cursor, endCursor);
21029
21040
  }
@@ -21057,7 +21068,7 @@ var prefixSumAddressIfcDoorTypeOperationEnum = new Uint32Array([0, 26, 39, 59, 7
21057
21068
  var slotMapIfcDoorTypeOperationEnum = new Int32Array([7, 18, 1, 8, 5, 15, 3, 16, 2, 9, 4, 12, 13, 10, 14, 11, 0, 6, 19, 17]);
21058
21069
  var encodedDataIfcDoorTypeOperationEnum = new TextEncoder().encode(".DOUBLE_DOOR_DOUBLE_SWING..USERDEFINED..SINGLE_SWING_RIGHT..SLIDING_TO_LEFT..DOUBLE_SWING_LEFT..ROLLINGUP..DOUBLE_DOOR_SINGLE_SWING_OPPOSITE_LEFT..SWING_FIXED_LEFT..DOUBLE_DOOR_SINGLE_SWING..SLIDING_TO_RIGHT..DOUBLE_DOOR_SINGLE_SWING_OPPOSITE_RIGHT..FOLDING_TO_RIGHT..DOUBLE_DOOR_FOLDING..DOUBLE_DOOR_SLIDING..REVOLVING..FOLDING_TO_LEFT..SINGLE_SWING_LEFT..DOUBLE_SWING_RIGHT..NOTDEFINED..SWING_FIXED_RIGHT.");
21059
21070
  var IfcDoorTypeOperationEnumSearch = new MinimalPerfectHash(gMapIfcDoorTypeOperationEnum, prefixSumAddressIfcDoorTypeOperationEnum, slotMapIfcDoorTypeOperationEnum, encodedDataIfcDoorTypeOperationEnum);
21060
- var parser67 = StepEnumParser.Instance;
21071
+ var parser67 = step_enum_parser_default.Instance;
21061
21072
  function IfcDoorTypeOperationEnumDeserializeStep(input, cursor, endCursor) {
21062
21073
  return parser67.extract(IfcDoorTypeOperationEnumSearch, input, cursor, endCursor);
21063
21074
  }
@@ -21080,7 +21091,7 @@ var prefixSumAddressIfcDuctFittingTypeEnum = new Uint32Array([0, 11, 23, 36, 48,
21080
21091
  var slotMapIfcDuctFittingTypeEnum = new Int32Array([1, 8, 5, 6, 0, 4, 7, 3, 2]);
21081
21092
  var encodedDataIfcDuctFittingTypeEnum = new TextEncoder().encode(".CONNECTOR..NOTDEFINED..OBSTRUCTION..TRANSITION..BEND..JUNCTION..USERDEFINED..EXIT..ENTRY.");
21082
21093
  var IfcDuctFittingTypeEnumSearch = new MinimalPerfectHash(gMapIfcDuctFittingTypeEnum, prefixSumAddressIfcDuctFittingTypeEnum, slotMapIfcDuctFittingTypeEnum, encodedDataIfcDuctFittingTypeEnum);
21083
- var parser68 = StepEnumParser.Instance;
21094
+ var parser68 = step_enum_parser_default.Instance;
21084
21095
  function IfcDuctFittingTypeEnumDeserializeStep(input, cursor, endCursor) {
21085
21096
  return parser68.extract(IfcDuctFittingTypeEnumSearch, input, cursor, endCursor);
21086
21097
  }
@@ -21098,7 +21109,7 @@ var prefixSumAddressIfcDuctSegmentTypeEnum = new Uint32Array([0, 12, 26, 43, 56]
21098
21109
  var slotMapIfcDuctSegmentTypeEnum = new Int32Array([3, 0, 1, 2]);
21099
21110
  var encodedDataIfcDuctSegmentTypeEnum = new TextEncoder().encode(".NOTDEFINED..RIGIDSEGMENT..FLEXIBLESEGMENT..USERDEFINED.");
21100
21111
  var IfcDuctSegmentTypeEnumSearch = new MinimalPerfectHash(gMapIfcDuctSegmentTypeEnum, prefixSumAddressIfcDuctSegmentTypeEnum, slotMapIfcDuctSegmentTypeEnum, encodedDataIfcDuctSegmentTypeEnum);
21101
- var parser69 = StepEnumParser.Instance;
21112
+ var parser69 = step_enum_parser_default.Instance;
21102
21113
  function IfcDuctSegmentTypeEnumDeserializeStep(input, cursor, endCursor) {
21103
21114
  return parser69.extract(IfcDuctSegmentTypeEnumSearch, input, cursor, endCursor);
21104
21115
  }
@@ -21117,7 +21128,7 @@ var prefixSumAddressIfcDuctSilencerTypeEnum = new Uint32Array([0, 13, 25, 38, 48
21117
21128
  var slotMapIfcDuctSilencerTypeEnum = new Int32Array([1, 4, 3, 0, 2]);
21118
21129
  var encodedDataIfcDuctSilencerTypeEnum = new TextEncoder().encode(".RECTANGULAR..NOTDEFINED..USERDEFINED..FLATOVAL..ROUND.");
21119
21130
  var IfcDuctSilencerTypeEnumSearch = new MinimalPerfectHash(gMapIfcDuctSilencerTypeEnum, prefixSumAddressIfcDuctSilencerTypeEnum, slotMapIfcDuctSilencerTypeEnum, encodedDataIfcDuctSilencerTypeEnum);
21120
- var parser70 = StepEnumParser.Instance;
21131
+ var parser70 = step_enum_parser_default.Instance;
21121
21132
  function IfcDuctSilencerTypeEnumDeserializeStep(input, cursor, endCursor) {
21122
21133
  return parser70.extract(IfcDuctSilencerTypeEnumSearch, input, cursor, endCursor);
21123
21134
  }
@@ -21149,7 +21160,7 @@ var prefixSumAddressIfcElectricApplianceTypeEnum = new Uint32Array([0, 12, 25, 5
21149
21160
  var slotMapIfcElectricApplianceTypeEnum = new Int32Array([17, 11, 2, 9, 0, 10, 13, 3, 15, 14, 8, 6, 5, 4, 7, 12, 1, 16]);
21150
21161
  var encodedDataIfcElectricApplianceTypeEnum = new TextEncoder().encode(".NOTDEFINED..PHOTOCOPIER..FREESTANDINGELECTRICHEATER..KITCHENMACHINE..DISHWASHER..MICROWAVE..TUMBLEDRYER..FREESTANDINGFAN..WASHINGMACHINE..VENDINGMACHINE..HANDDRYER..FREEZER..FREESTANDINGWATERCOOLER..FREESTANDINGWATERHEATER..FRIDGE_FREEZER..REFRIGERATOR..ELECTRICCOOKER..USERDEFINED.");
21151
21162
  var IfcElectricApplianceTypeEnumSearch = new MinimalPerfectHash(gMapIfcElectricApplianceTypeEnum, prefixSumAddressIfcElectricApplianceTypeEnum, slotMapIfcElectricApplianceTypeEnum, encodedDataIfcElectricApplianceTypeEnum);
21152
- var parser71 = StepEnumParser.Instance;
21163
+ var parser71 = step_enum_parser_default.Instance;
21153
21164
  function IfcElectricApplianceTypeEnumDeserializeStep(input, cursor, endCursor) {
21154
21165
  return parser71.extract(IfcElectricApplianceTypeEnumSearch, input, cursor, endCursor);
21155
21166
  }
@@ -21169,7 +21180,7 @@ var prefixSumAddressIfcElectricDistributionBoardTypeEnum = new Uint32Array([0, 1
21169
21180
  var slotMapIfcElectricDistributionBoardTypeEnum = new Int32Array([0, 4, 5, 1, 2, 3]);
21170
21181
  var encodedDataIfcElectricDistributionBoardTypeEnum = new TextEncoder().encode(".CONSUMERUNIT..USERDEFINED..NOTDEFINED..DISTRIBUTIONBOARD..MOTORCONTROLCENTRE..SWITCHBOARD.");
21171
21182
  var IfcElectricDistributionBoardTypeEnumSearch = new MinimalPerfectHash(gMapIfcElectricDistributionBoardTypeEnum, prefixSumAddressIfcElectricDistributionBoardTypeEnum, slotMapIfcElectricDistributionBoardTypeEnum, encodedDataIfcElectricDistributionBoardTypeEnum);
21172
- var parser72 = StepEnumParser.Instance;
21183
+ var parser72 = step_enum_parser_default.Instance;
21173
21184
  function IfcElectricDistributionBoardTypeEnumDeserializeStep(input, cursor, endCursor) {
21174
21185
  return parser72.extract(IfcElectricDistributionBoardTypeEnumSearch, input, cursor, endCursor);
21175
21186
  }
@@ -21194,7 +21205,7 @@ var prefixSumAddressIfcElectricDistributionPointFunctionEnum = new Uint32Array([
21194
21205
  var slotMapIfcElectricDistributionPointFunctionEnum = new Int32Array([2, 6, 7, 3, 9, 1, 8, 5, 4, 0, 10]);
21195
21206
  var encodedDataIfcElectricDistributionPointFunctionEnum = new TextEncoder().encode(".CONTROLPANEL..MIMICPANEL..MOTORCONTROLCENTRE..DISTRIBUTIONBOARD..USERDEFINED..CONSUMERUNIT..SWITCHBOARD..INDICATORPANEL..GASDETECTORPANEL..ALARMPANEL..NOTDEFINED.");
21196
21207
  var IfcElectricDistributionPointFunctionEnumSearch = new MinimalPerfectHash(gMapIfcElectricDistributionPointFunctionEnum, prefixSumAddressIfcElectricDistributionPointFunctionEnum, slotMapIfcElectricDistributionPointFunctionEnum, encodedDataIfcElectricDistributionPointFunctionEnum);
21197
- var parser73 = StepEnumParser.Instance;
21208
+ var parser73 = step_enum_parser_default.Instance;
21198
21209
  function IfcElectricDistributionPointFunctionEnumDeserializeStep(input, cursor, endCursor) {
21199
21210
  return parser73.extract(IfcElectricDistributionPointFunctionEnumSearch, input, cursor, endCursor);
21200
21211
  }
@@ -21215,7 +21226,7 @@ var prefixSumAddressIfcElectricFlowStorageDeviceTypeEnum = new Uint32Array([0, 9
21215
21226
  var slotMapIfcElectricFlowStorageDeviceTypeEnum = new Int32Array([0, 1, 6, 5, 3, 2, 4]);
21216
21227
  var encodedDataIfcElectricFlowStorageDeviceTypeEnum = new TextEncoder().encode(".BATTERY..CAPACITORBANK..NOTDEFINED..USERDEFINED..INDUCTORBANK..HARMONICFILTER..UPS.");
21217
21228
  var IfcElectricFlowStorageDeviceTypeEnumSearch = new MinimalPerfectHash(gMapIfcElectricFlowStorageDeviceTypeEnum, prefixSumAddressIfcElectricFlowStorageDeviceTypeEnum, slotMapIfcElectricFlowStorageDeviceTypeEnum, encodedDataIfcElectricFlowStorageDeviceTypeEnum);
21218
- var parser74 = StepEnumParser.Instance;
21229
+ var parser74 = step_enum_parser_default.Instance;
21219
21230
  function IfcElectricFlowStorageDeviceTypeEnumDeserializeStep(input, cursor, endCursor) {
21220
21231
  return parser74.extract(IfcElectricFlowStorageDeviceTypeEnumSearch, input, cursor, endCursor);
21221
21232
  }
@@ -21234,7 +21245,7 @@ var prefixSumAddressIfcElectricGeneratorTypeEnum = new Uint32Array([0, 13, 25, 3
21234
21245
  var slotMapIfcElectricGeneratorTypeEnum = new Int32Array([3, 2, 0, 4, 1]);
21235
21246
  var encodedDataIfcElectricGeneratorTypeEnum = new TextEncoder().encode(".USERDEFINED..STANDALONE..CHP..NOTDEFINED..ENGINEGENERATOR.");
21236
21247
  var IfcElectricGeneratorTypeEnumSearch = new MinimalPerfectHash(gMapIfcElectricGeneratorTypeEnum, prefixSumAddressIfcElectricGeneratorTypeEnum, slotMapIfcElectricGeneratorTypeEnum, encodedDataIfcElectricGeneratorTypeEnum);
21237
- var parser75 = StepEnumParser.Instance;
21248
+ var parser75 = step_enum_parser_default.Instance;
21238
21249
  function IfcElectricGeneratorTypeEnumDeserializeStep(input, cursor, endCursor) {
21239
21250
  return parser75.extract(IfcElectricGeneratorTypeEnumSearch, input, cursor, endCursor);
21240
21251
  }
@@ -21255,7 +21266,7 @@ var prefixSumAddressIfcElectricMotorTypeEnum = new Uint32Array([0, 12, 25, 38, 6
21255
21266
  var slotMapIfcElectricMotorTypeEnum = new Int32Array([6, 5, 4, 3, 1, 2, 0]);
21256
21267
  var encodedDataIfcElectricMotorTypeEnum = new TextEncoder().encode(".NOTDEFINED..USERDEFINED..SYNCHRONOUS..RELUCTANCESYNCHRONOUS..INDUCTION..POLYPHASE..DC.");
21257
21268
  var IfcElectricMotorTypeEnumSearch = new MinimalPerfectHash(gMapIfcElectricMotorTypeEnum, prefixSumAddressIfcElectricMotorTypeEnum, slotMapIfcElectricMotorTypeEnum, encodedDataIfcElectricMotorTypeEnum);
21258
- var parser76 = StepEnumParser.Instance;
21269
+ var parser76 = step_enum_parser_default.Instance;
21259
21270
  function IfcElectricMotorTypeEnumDeserializeStep(input, cursor, endCursor) {
21260
21271
  return parser76.extract(IfcElectricMotorTypeEnumSearch, input, cursor, endCursor);
21261
21272
  }
@@ -21274,7 +21285,7 @@ var prefixSumAddressIfcElectricTimeControlTypeEnum = new Uint32Array([0, 7, 20,
21274
21285
  var slotMapIfcElectricTimeControlTypeEnum = new Int32Array([2, 3, 0, 1, 4]);
21275
21286
  var encodedDataIfcElectricTimeControlTypeEnum = new TextEncoder().encode(".RELAY..USERDEFINED..TIMECLOCK..TIMEDELAY..NOTDEFINED.");
21276
21287
  var IfcElectricTimeControlTypeEnumSearch = new MinimalPerfectHash(gMapIfcElectricTimeControlTypeEnum, prefixSumAddressIfcElectricTimeControlTypeEnum, slotMapIfcElectricTimeControlTypeEnum, encodedDataIfcElectricTimeControlTypeEnum);
21277
- var parser77 = StepEnumParser.Instance;
21288
+ var parser77 = step_enum_parser_default.Instance;
21278
21289
  function IfcElectricTimeControlTypeEnumDeserializeStep(input, cursor, endCursor) {
21279
21290
  return parser77.extract(IfcElectricTimeControlTypeEnumSearch, input, cursor, endCursor);
21280
21291
  }
@@ -21299,7 +21310,7 @@ var prefixSumAddressIfcElementAssemblyTypeEnum = new Uint32Array([0, 12, 20, 27,
21299
21310
  var slotMapIfcElementAssemblyTypeEnum = new Int32Array([7, 4, 8, 0, 3, 10, 1, 6, 9, 2, 5]);
21300
21311
  var encodedDataIfcElementAssemblyTypeEnum = new TextEncoder().encode(".SLAB_FIELD..GIRDER..TRUSS..ACCESSORY_ASSEMBLY..BRACED_FRAME..NOTDEFINED..ARCH..RIGID_FRAME..USERDEFINED..BEAM_GRID..REINFORCEMENT_UNIT.");
21301
21312
  var IfcElementAssemblyTypeEnumSearch = new MinimalPerfectHash(gMapIfcElementAssemblyTypeEnum, prefixSumAddressIfcElementAssemblyTypeEnum, slotMapIfcElementAssemblyTypeEnum, encodedDataIfcElementAssemblyTypeEnum);
21302
- var parser78 = StepEnumParser.Instance;
21313
+ var parser78 = step_enum_parser_default.Instance;
21303
21314
  function IfcElementAssemblyTypeEnumDeserializeStep(input, cursor, endCursor) {
21304
21315
  return parser78.extract(IfcElementAssemblyTypeEnumSearch, input, cursor, endCursor);
21305
21316
  }
@@ -21316,7 +21327,7 @@ var prefixSumAddressIfcElementCompositionEnum = new Uint32Array([0, 9, 18, 27]);
21316
21327
  var slotMapIfcElementCompositionEnum = new Int32Array([0, 1, 2]);
21317
21328
  var encodedDataIfcElementCompositionEnum = new TextEncoder().encode(".COMPLEX..ELEMENT..PARTIAL.");
21318
21329
  var IfcElementCompositionEnumSearch = new MinimalPerfectHash(gMapIfcElementCompositionEnum, prefixSumAddressIfcElementCompositionEnum, slotMapIfcElementCompositionEnum, encodedDataIfcElementCompositionEnum);
21319
- var parser79 = StepEnumParser.Instance;
21330
+ var parser79 = step_enum_parser_default.Instance;
21320
21331
  function IfcElementCompositionEnumDeserializeStep(input, cursor, endCursor) {
21321
21332
  return parser79.extract(IfcElementCompositionEnumSearch, input, cursor, endCursor);
21322
21333
  }
@@ -21334,7 +21345,7 @@ var prefixSumAddressIfcEngineTypeEnum = new Uint32Array([0, 20, 32, 52, 65]);
21334
21345
  var slotMapIfcEngineTypeEnum = new Int32Array([0, 3, 1, 2]);
21335
21346
  var encodedDataIfcEngineTypeEnum = new TextEncoder().encode(".EXTERNALCOMBUSTION..NOTDEFINED..INTERNALCOMBUSTION..USERDEFINED.");
21336
21347
  var IfcEngineTypeEnumSearch = new MinimalPerfectHash(gMapIfcEngineTypeEnum, prefixSumAddressIfcEngineTypeEnum, slotMapIfcEngineTypeEnum, encodedDataIfcEngineTypeEnum);
21337
- var parser80 = StepEnumParser.Instance;
21348
+ var parser80 = step_enum_parser_default.Instance;
21338
21349
  function IfcEngineTypeEnumDeserializeStep(input, cursor, endCursor) {
21339
21350
  return parser80.extract(IfcEngineTypeEnumSearch, input, cursor, endCursor);
21340
21351
  }
@@ -21359,7 +21370,7 @@ var prefixSumAddressIfcEvaporativeCoolerTypeEnum = new Uint32Array([0, 28, 41, 5
21359
21370
  var slotMapIfcEvaporativeCoolerTypeEnum = new Int32Array([4, 9, 10, 3, 5, 6, 8, 1, 0, 7, 2]);
21360
21371
  var encodedDataIfcEvaporativeCoolerTypeEnum = new TextEncoder().encode(".DIRECTEVAPORATIVEAIRWASHER..USERDEFINED..NOTDEFINED..DIRECTEVAPORATIVEPACKAGEDROTARYAIRCOOLER..INDIRECTEVAPORATIVEPACKAGEAIRCOOLER..INDIRECTEVAPORATIVEWETCOIL..INDIRECTDIRECTCOMBINATION..DIRECTEVAPORATIVERIGIDMEDIAAIRCOOLER..DIRECTEVAPORATIVERANDOMMEDIAAIRCOOLER..INDIRECTEVAPORATIVECOOLINGTOWERORCOILCOOLER..DIRECTEVAPORATIVESLINGERSPACKAGEDAIRCOOLER.");
21361
21372
  var IfcEvaporativeCoolerTypeEnumSearch = new MinimalPerfectHash(gMapIfcEvaporativeCoolerTypeEnum, prefixSumAddressIfcEvaporativeCoolerTypeEnum, slotMapIfcEvaporativeCoolerTypeEnum, encodedDataIfcEvaporativeCoolerTypeEnum);
21362
- var parser81 = StepEnumParser.Instance;
21373
+ var parser81 = step_enum_parser_default.Instance;
21363
21374
  function IfcEvaporativeCoolerTypeEnumDeserializeStep(input, cursor, endCursor) {
21364
21375
  return parser81.extract(IfcEvaporativeCoolerTypeEnumSearch, input, cursor, endCursor);
21365
21376
  }
@@ -21381,7 +21392,7 @@ var prefixSumAddressIfcEvaporatorTypeEnum = new Uint32Array([0, 12, 41, 62, 89,
21381
21392
  var slotMapIfcEvaporatorTypeEnum = new Int32Array([7, 1, 4, 2, 0, 5, 3, 6]);
21382
21393
  var encodedDataIfcEvaporatorTypeEnum = new TextEncoder().encode(".NOTDEFINED..DIRECTEXPANSIONSHELLANDTUBE..FLOODEDSHELLANDTUBE..DIRECTEXPANSIONTUBEINTUBE..DIRECTEXPANSION..SHELLANDCOIL..DIRECTEXPANSIONBRAZEDPLATE..USERDEFINED.");
21383
21394
  var IfcEvaporatorTypeEnumSearch = new MinimalPerfectHash(gMapIfcEvaporatorTypeEnum, prefixSumAddressIfcEvaporatorTypeEnum, slotMapIfcEvaporatorTypeEnum, encodedDataIfcEvaporatorTypeEnum);
21384
- var parser82 = StepEnumParser.Instance;
21395
+ var parser82 = step_enum_parser_default.Instance;
21385
21396
  function IfcEvaporatorTypeEnumDeserializeStep(input, cursor, endCursor) {
21386
21397
  return parser82.extract(IfcEvaporatorTypeEnumSearch, input, cursor, endCursor);
21387
21398
  }
@@ -21401,7 +21412,7 @@ var prefixSumAddressIfcEventTriggerTypeEnum = new Uint32Array([0, 11, 22, 35, 49
21401
21412
  var slotMapIfcEventTriggerTypeEnum = new Int32Array([2, 0, 4, 1, 5, 3]);
21402
21413
  var encodedDataIfcEventTriggerTypeEnum = new TextEncoder().encode(".EVENTTIME..EVENTRULE..USERDEFINED..EVENTMESSAGE..NOTDEFINED..EVENTCOMPLEX.");
21403
21414
  var IfcEventTriggerTypeEnumSearch = new MinimalPerfectHash(gMapIfcEventTriggerTypeEnum, prefixSumAddressIfcEventTriggerTypeEnum, slotMapIfcEventTriggerTypeEnum, encodedDataIfcEventTriggerTypeEnum);
21404
- var parser83 = StepEnumParser.Instance;
21415
+ var parser83 = step_enum_parser_default.Instance;
21405
21416
  function IfcEventTriggerTypeEnumDeserializeStep(input, cursor, endCursor) {
21406
21417
  return parser83.extract(IfcEventTriggerTypeEnumSearch, input, cursor, endCursor);
21407
21418
  }
@@ -21420,7 +21431,7 @@ var prefixSumAddressIfcEventTypeEnum = new Uint32Array([0, 19, 31, 44, 56, 66]);
21420
21431
  var slotMapIfcEventTypeEnum = new Int32Array([2, 4, 3, 0, 1]);
21421
21432
  var encodedDataIfcEventTypeEnum = new TextEncoder().encode(".INTERMEDIATEEVENT..NOTDEFINED..USERDEFINED..STARTEVENT..ENDEVENT.");
21422
21433
  var IfcEventTypeEnumSearch = new MinimalPerfectHash(gMapIfcEventTypeEnum, prefixSumAddressIfcEventTypeEnum, slotMapIfcEventTypeEnum, encodedDataIfcEventTypeEnum);
21423
- var parser84 = StepEnumParser.Instance;
21434
+ var parser84 = step_enum_parser_default.Instance;
21424
21435
  function IfcEventTypeEnumDeserializeStep(input, cursor, endCursor) {
21425
21436
  return parser84.extract(IfcEventTypeEnumSearch, input, cursor, endCursor);
21426
21437
  }
@@ -21440,7 +21451,7 @@ var prefixSumAddressIfcExternalSpatialElementTypeEnum = new Uint32Array([0, 10,
21440
21451
  var slotMapIfcExternalSpatialElementTypeEnum = new Int32Array([0, 1, 5, 3, 4, 2]);
21441
21452
  var encodedDataIfcExternalSpatialElementTypeEnum = new TextEncoder().encode(".EXTERNAL..EXTERNAL_EARTH..NOTDEFINED..EXTERNAL_FIRE..USERDEFINED..EXTERNAL_WATER.");
21442
21453
  var IfcExternalSpatialElementTypeEnumSearch = new MinimalPerfectHash(gMapIfcExternalSpatialElementTypeEnum, prefixSumAddressIfcExternalSpatialElementTypeEnum, slotMapIfcExternalSpatialElementTypeEnum, encodedDataIfcExternalSpatialElementTypeEnum);
21443
- var parser85 = StepEnumParser.Instance;
21454
+ var parser85 = step_enum_parser_default.Instance;
21444
21455
  function IfcExternalSpatialElementTypeEnumDeserializeStep(input, cursor, endCursor) {
21445
21456
  return parser85.extract(IfcExternalSpatialElementTypeEnumSearch, input, cursor, endCursor);
21446
21457
  }
@@ -21463,7 +21474,7 @@ var prefixSumAddressIfcFanTypeEnum = new Uint32Array([0, 35, 46, 62, 75, 86, 98,
21463
21474
  var slotMapIfcFanTypeEnum = new Int32Array([2, 4, 6, 7, 5, 8, 3, 0, 1]);
21464
21475
  var encodedDataIfcFanTypeEnum = new TextEncoder().encode(".CENTRIFUGALBACKWARDINCLINEDCURVED..TUBEAXIAL..PROPELLORAXIAL..USERDEFINED..VANEAXIAL..NOTDEFINED..CENTRIFUGALAIRFOIL..CENTRIFUGALFORWARDCURVED..CENTRIFUGALRADIAL.");
21465
21476
  var IfcFanTypeEnumSearch = new MinimalPerfectHash(gMapIfcFanTypeEnum, prefixSumAddressIfcFanTypeEnum, slotMapIfcFanTypeEnum, encodedDataIfcFanTypeEnum);
21466
- var parser86 = StepEnumParser.Instance;
21477
+ var parser86 = step_enum_parser_default.Instance;
21467
21478
  function IfcFanTypeEnumDeserializeStep(input, cursor, endCursor) {
21468
21479
  return parser86.extract(IfcFanTypeEnumSearch, input, cursor, endCursor);
21469
21480
  }
@@ -21482,7 +21493,7 @@ var prefixSumAddressIfcFastenerTypeEnum = new Uint32Array([0, 8, 21, 27, 39, 45]
21482
21493
  var slotMapIfcFastenerTypeEnum = new Int32Array([1, 3, 0, 4, 2]);
21483
21494
  var encodedDataIfcFastenerTypeEnum = new TextEncoder().encode(".MORTAR..USERDEFINED..GLUE..NOTDEFINED..WELD.");
21484
21495
  var IfcFastenerTypeEnumSearch = new MinimalPerfectHash(gMapIfcFastenerTypeEnum, prefixSumAddressIfcFastenerTypeEnum, slotMapIfcFastenerTypeEnum, encodedDataIfcFastenerTypeEnum);
21485
- var parser87 = StepEnumParser.Instance;
21496
+ var parser87 = step_enum_parser_default.Instance;
21486
21497
  function IfcFastenerTypeEnumDeserializeStep(input, cursor, endCursor) {
21487
21498
  return parser87.extract(IfcFastenerTypeEnumSearch, input, cursor, endCursor);
21488
21499
  }
@@ -21504,7 +21515,7 @@ var prefixSumAddressIfcFilterTypeEnum = new Uint32Array([0, 21, 40, 52, 62, 74,
21504
21515
  var slotMapIfcFilterTypeEnum = new Int32Array([1, 0, 7, 4, 2, 5, 6, 3]);
21505
21516
  var encodedDataIfcFilterTypeEnum = new TextEncoder().encode(".COMPRESSEDAIRFILTER..AIRPARTICLEFILTER..NOTDEFINED..STRAINER..ODORFILTER..WATERFILTER..USERDEFINED..OILFILTER.");
21506
21517
  var IfcFilterTypeEnumSearch = new MinimalPerfectHash(gMapIfcFilterTypeEnum, prefixSumAddressIfcFilterTypeEnum, slotMapIfcFilterTypeEnum, encodedDataIfcFilterTypeEnum);
21507
- var parser88 = StepEnumParser.Instance;
21518
+ var parser88 = step_enum_parser_default.Instance;
21508
21519
  function IfcFilterTypeEnumDeserializeStep(input, cursor, endCursor) {
21509
21520
  return parser88.extract(IfcFilterTypeEnumSearch, input, cursor, endCursor);
21510
21521
  }
@@ -21525,7 +21536,7 @@ var prefixSumAddressIfcFireSuppressionTerminalTypeEnum = new Uint32Array([0, 13,
21525
21536
  var slotMapIfcFireSuppressionTerminalTypeEnum = new Int32Array([5, 3, 1, 4, 2, 6, 0]);
21526
21537
  var encodedDataIfcFireSuppressionTerminalTypeEnum = new TextEncoder().encode(".USERDEFINED..SPRINKLER..FIREHYDRANT..SPRINKLERDEFLECTOR..HOSEREEL..NOTDEFINED..BREECHINGINLET.");
21527
21538
  var IfcFireSuppressionTerminalTypeEnumSearch = new MinimalPerfectHash(gMapIfcFireSuppressionTerminalTypeEnum, prefixSumAddressIfcFireSuppressionTerminalTypeEnum, slotMapIfcFireSuppressionTerminalTypeEnum, encodedDataIfcFireSuppressionTerminalTypeEnum);
21528
- var parser89 = StepEnumParser.Instance;
21539
+ var parser89 = step_enum_parser_default.Instance;
21529
21540
  function IfcFireSuppressionTerminalTypeEnumDeserializeStep(input, cursor, endCursor) {
21530
21541
  return parser89.extract(IfcFireSuppressionTerminalTypeEnumSearch, input, cursor, endCursor);
21531
21542
  }
@@ -21543,7 +21554,7 @@ var prefixSumAddressIfcFlowDirectionEnum = new Uint32Array([0, 15, 23, 35, 41]);
21543
21554
  var slotMapIfcFlowDirectionEnum = new Int32Array([2, 0, 3, 1]);
21544
21555
  var encodedDataIfcFlowDirectionEnum = new TextEncoder().encode(".SOURCEANDSINK..SOURCE..NOTDEFINED..SINK.");
21545
21556
  var IfcFlowDirectionEnumSearch = new MinimalPerfectHash(gMapIfcFlowDirectionEnum, prefixSumAddressIfcFlowDirectionEnum, slotMapIfcFlowDirectionEnum, encodedDataIfcFlowDirectionEnum);
21546
- var parser90 = StepEnumParser.Instance;
21557
+ var parser90 = step_enum_parser_default.Instance;
21547
21558
  function IfcFlowDirectionEnumDeserializeStep(input, cursor, endCursor) {
21548
21559
  return parser90.extract(IfcFlowDirectionEnumSearch, input, cursor, endCursor);
21549
21560
  }
@@ -21567,7 +21578,7 @@ var prefixSumAddressIfcFlowInstrumentTypeEnum = new Uint32Array([0, 16, 28, 43,
21567
21578
  var slotMapIfcFlowInstrumentTypeEnum = new Int32Array([6, 9, 7, 4, 1, 5, 3, 0, 2, 8]);
21568
21579
  var encodedDataIfcFlowInstrumentTypeEnum = new TextEncoder().encode(".VOLTMETER_PEAK..NOTDEFINED..VOLTMETER_RMS..POWERFACTORMETER..THERMOMETER..PHASEANGLEMETER..FREQUENCYMETER..PRESSUREGAUGE..AMMETER..USERDEFINED.");
21569
21580
  var IfcFlowInstrumentTypeEnumSearch = new MinimalPerfectHash(gMapIfcFlowInstrumentTypeEnum, prefixSumAddressIfcFlowInstrumentTypeEnum, slotMapIfcFlowInstrumentTypeEnum, encodedDataIfcFlowInstrumentTypeEnum);
21570
- var parser91 = StepEnumParser.Instance;
21581
+ var parser91 = step_enum_parser_default.Instance;
21571
21582
  function IfcFlowInstrumentTypeEnumDeserializeStep(input, cursor, endCursor) {
21572
21583
  return parser91.extract(IfcFlowInstrumentTypeEnumSearch, input, cursor, endCursor);
21573
21584
  }
@@ -21587,7 +21598,7 @@ var prefixSumAddressIfcFlowMeterTypeEnum = new Uint32Array([0, 13, 23, 35, 48, 5
21587
21598
  var slotMapIfcFlowMeterTypeEnum = new Int32Array([4, 2, 5, 0, 1, 3]);
21588
21599
  var encodedDataIfcFlowMeterTypeEnum = new TextEncoder().encode(".USERDEFINED..OILMETER..NOTDEFINED..ENERGYMETER..GASMETER..WATERMETER.");
21589
21600
  var IfcFlowMeterTypeEnumSearch = new MinimalPerfectHash(gMapIfcFlowMeterTypeEnum, prefixSumAddressIfcFlowMeterTypeEnum, slotMapIfcFlowMeterTypeEnum, encodedDataIfcFlowMeterTypeEnum);
21590
- var parser92 = StepEnumParser.Instance;
21601
+ var parser92 = step_enum_parser_default.Instance;
21591
21602
  function IfcFlowMeterTypeEnumDeserializeStep(input, cursor, endCursor) {
21592
21603
  return parser92.extract(IfcFlowMeterTypeEnumSearch, input, cursor, endCursor);
21593
21604
  }
@@ -21608,7 +21619,7 @@ var prefixSumAddressIfcFootingTypeEnum = new Uint32Array([0, 15, 35, 47, 60, 73,
21608
21619
  var slotMapIfcFootingTypeEnum = new Int32Array([4, 0, 6, 2, 5, 1, 3]);
21609
21620
  var encodedDataIfcFootingTypeEnum = new TextEncoder().encode(".STRIP_FOOTING..CAISSON_FOUNDATION..NOTDEFINED..PAD_FOOTING..USERDEFINED..FOOTING_BEAM..PILE_CAP.");
21610
21621
  var IfcFootingTypeEnumSearch = new MinimalPerfectHash(gMapIfcFootingTypeEnum, prefixSumAddressIfcFootingTypeEnum, slotMapIfcFootingTypeEnum, encodedDataIfcFootingTypeEnum);
21611
- var parser93 = StepEnumParser.Instance;
21622
+ var parser93 = step_enum_parser_default.Instance;
21612
21623
  function IfcFootingTypeEnumDeserializeStep(input, cursor, endCursor) {
21613
21624
  return parser93.extract(IfcFootingTypeEnumSearch, input, cursor, endCursor);
21614
21625
  }
@@ -21631,7 +21642,7 @@ var prefixSumAddressIfcFurnitureTypeEnum = new Uint32Array([0, 7, 20, 26, 33, 46
21631
21642
  var slotMapIfcFurnitureTypeEnum = new Int32Array([1, 4, 2, 5, 7, 3, 0, 6, 8]);
21632
21643
  var encodedDataIfcFurnitureTypeEnum = new TextEncoder().encode(".TABLE..FILECABINET..DESK..SHELF..USERDEFINED..BED..CHAIR..SOFA..NOTDEFINED.");
21633
21644
  var IfcFurnitureTypeEnumSearch = new MinimalPerfectHash(gMapIfcFurnitureTypeEnum, prefixSumAddressIfcFurnitureTypeEnum, slotMapIfcFurnitureTypeEnum, encodedDataIfcFurnitureTypeEnum);
21634
- var parser94 = StepEnumParser.Instance;
21645
+ var parser94 = step_enum_parser_default.Instance;
21635
21646
  function IfcFurnitureTypeEnumDeserializeStep(input, cursor, endCursor) {
21636
21647
  return parser94.extract(IfcFurnitureTypeEnumSearch, input, cursor, endCursor);
21637
21648
  }
@@ -21648,7 +21659,7 @@ var prefixSumAddressIfcGeographicElementTypeEnum = new Uint32Array([0, 9, 21, 34
21648
21659
  var slotMapIfcGeographicElementTypeEnum = new Int32Array([0, 2, 1]);
21649
21660
  var encodedDataIfcGeographicElementTypeEnum = new TextEncoder().encode(".TERRAIN..NOTDEFINED..USERDEFINED.");
21650
21661
  var IfcGeographicElementTypeEnumSearch = new MinimalPerfectHash(gMapIfcGeographicElementTypeEnum, prefixSumAddressIfcGeographicElementTypeEnum, slotMapIfcGeographicElementTypeEnum, encodedDataIfcGeographicElementTypeEnum);
21651
- var parser95 = StepEnumParser.Instance;
21662
+ var parser95 = step_enum_parser_default.Instance;
21652
21663
  function IfcGeographicElementTypeEnumDeserializeStep(input, cursor, endCursor) {
21653
21664
  return parser95.extract(IfcGeographicElementTypeEnumSearch, input, cursor, endCursor);
21654
21665
  }
@@ -21671,7 +21682,7 @@ var prefixSumAddressIfcGeometricProjectionEnum = new Uint32Array([0, 13, 25, 46,
21671
21682
  var slotMapIfcGeometricProjectionEnum = new Int32Array([7, 8, 4, 5, 2, 1, 3, 6, 0]);
21672
21683
  var encodedDataIfcGeometricProjectionEnum = new TextEncoder().encode(".USERDEFINED..NOTDEFINED..REFLECTED_PLAN_VIEW..SECTION_VIEW..MODEL_VIEW..SKETCH_VIEW..PLAN_VIEW..ELEVATION_VIEW..GRAPH_VIEW.");
21673
21684
  var IfcGeometricProjectionEnumSearch = new MinimalPerfectHash(gMapIfcGeometricProjectionEnum, prefixSumAddressIfcGeometricProjectionEnum, slotMapIfcGeometricProjectionEnum, encodedDataIfcGeometricProjectionEnum);
21674
- var parser96 = StepEnumParser.Instance;
21685
+ var parser96 = step_enum_parser_default.Instance;
21675
21686
  function IfcGeometricProjectionEnumDeserializeStep(input, cursor, endCursor) {
21676
21687
  return parser96.extract(IfcGeometricProjectionEnumSearch, input, cursor, endCursor);
21677
21688
  }
@@ -21687,7 +21698,7 @@ var prefixSumAddressIfcGlobalOrLocalEnum = new Uint32Array([0, 14, 29]);
21687
21698
  var slotMapIfcGlobalOrLocalEnum = new Int32Array([1, 0]);
21688
21699
  var encodedDataIfcGlobalOrLocalEnum = new TextEncoder().encode(".LOCAL_COORDS..GLOBAL_COORDS.");
21689
21700
  var IfcGlobalOrLocalEnumSearch = new MinimalPerfectHash(gMapIfcGlobalOrLocalEnum, prefixSumAddressIfcGlobalOrLocalEnum, slotMapIfcGlobalOrLocalEnum, encodedDataIfcGlobalOrLocalEnum);
21690
- var parser97 = StepEnumParser.Instance;
21701
+ var parser97 = step_enum_parser_default.Instance;
21691
21702
  function IfcGlobalOrLocalEnumDeserializeStep(input, cursor, endCursor) {
21692
21703
  return parser97.extract(IfcGlobalOrLocalEnumSearch, input, cursor, endCursor);
21693
21704
  }
@@ -21707,7 +21718,7 @@ var prefixSumAddressIfcGridTypeEnum = new Uint32Array([0, 12, 25, 36, 49, 57, 69
21707
21718
  var slotMapIfcGridTypeEnum = new Int32Array([5, 0, 3, 4, 1, 2]);
21708
21719
  var encodedDataIfcGridTypeEnum = new TextEncoder().encode(".NOTDEFINED..RECTANGULAR..IRREGULAR..USERDEFINED..RADIAL..TRIANGULAR.");
21709
21720
  var IfcGridTypeEnumSearch = new MinimalPerfectHash(gMapIfcGridTypeEnum, prefixSumAddressIfcGridTypeEnum, slotMapIfcGridTypeEnum, encodedDataIfcGridTypeEnum);
21710
- var parser98 = StepEnumParser.Instance;
21721
+ var parser98 = step_enum_parser_default.Instance;
21711
21722
  function IfcGridTypeEnumDeserializeStep(input, cursor, endCursor) {
21712
21723
  return parser98.extract(IfcGridTypeEnumSearch, input, cursor, endCursor);
21713
21724
  }
@@ -21725,7 +21736,7 @@ var prefixSumAddressIfcHeatExchangerTypeEnum = new Uint32Array([0, 14, 27, 34, 4
21725
21736
  var slotMapIfcHeatExchangerTypeEnum = new Int32Array([1, 2, 0, 3]);
21726
21737
  var encodedDataIfcHeatExchangerTypeEnum = new TextEncoder().encode(".SHELLANDTUBE..USERDEFINED..PLATE..NOTDEFINED.");
21727
21738
  var IfcHeatExchangerTypeEnumSearch = new MinimalPerfectHash(gMapIfcHeatExchangerTypeEnum, prefixSumAddressIfcHeatExchangerTypeEnum, slotMapIfcHeatExchangerTypeEnum, encodedDataIfcHeatExchangerTypeEnum);
21728
- var parser99 = StepEnumParser.Instance;
21739
+ var parser99 = step_enum_parser_default.Instance;
21729
21740
  function IfcHeatExchangerTypeEnumDeserializeStep(input, cursor, endCursor) {
21730
21741
  return parser99.extract(IfcHeatExchangerTypeEnumSearch, input, cursor, endCursor);
21731
21742
  }
@@ -21754,7 +21765,7 @@ var prefixSumAddressIfcHumidifierTypeEnum = new Uint32Array([0, 18, 31, 47, 62,
21754
21765
  var slotMapIfcHumidifierTypeEnum = new Int32Array([8, 13, 0, 12, 4, 10, 9, 6, 14, 11, 2, 5, 7, 3, 1]);
21755
21766
  var encodedDataIfcHumidifierTypeEnum = new TextEncoder().encode(".ASSISTEDELECTRIC..USERDEFINED..STEAMINJECTION..ASSISTEDSTEAM..ADIABATICATOMIZING..ASSISTEDPROPANE..ASSISTEDNATURALGAS..ADIABATICRIGIDMEDIA..NOTDEFINED..ASSISTEDBUTANE..ADIABATICPAN..ADIABATICULTRASONIC..ADIABATICCOMPRESSEDAIRNOZZLE..ADIABATICWETTEDELEMENT..ADIABATICAIRWASHER.");
21756
21767
  var IfcHumidifierTypeEnumSearch = new MinimalPerfectHash(gMapIfcHumidifierTypeEnum, prefixSumAddressIfcHumidifierTypeEnum, slotMapIfcHumidifierTypeEnum, encodedDataIfcHumidifierTypeEnum);
21757
- var parser100 = StepEnumParser.Instance;
21768
+ var parser100 = step_enum_parser_default.Instance;
21758
21769
  function IfcHumidifierTypeEnumDeserializeStep(input, cursor, endCursor) {
21759
21770
  return parser100.extract(IfcHumidifierTypeEnumSearch, input, cursor, endCursor);
21760
21771
  }
@@ -21774,7 +21785,7 @@ var prefixSumAddressIfcInterceptorTypeEnum = new Uint32Array([0, 13, 21, 26, 34,
21774
21785
  var slotMapIfcInterceptorTypeEnum = new Int32Array([4, 1, 2, 3, 0, 5]);
21775
21786
  var encodedDataIfcInterceptorTypeEnum = new TextEncoder().encode(".USERDEFINED..GREASE..OIL..PETROL..CYCLONIC..NOTDEFINED.");
21776
21787
  var IfcInterceptorTypeEnumSearch = new MinimalPerfectHash(gMapIfcInterceptorTypeEnum, prefixSumAddressIfcInterceptorTypeEnum, slotMapIfcInterceptorTypeEnum, encodedDataIfcInterceptorTypeEnum);
21777
- var parser101 = StepEnumParser.Instance;
21788
+ var parser101 = step_enum_parser_default.Instance;
21778
21789
  function IfcInterceptorTypeEnumDeserializeStep(input, cursor, endCursor) {
21779
21790
  return parser101.extract(IfcInterceptorTypeEnumSearch, input, cursor, endCursor);
21780
21791
  }
@@ -21794,7 +21805,7 @@ var prefixSumAddressIfcInternalOrExternalEnum = new Uint32Array([0, 16, 28, 38,
21794
21805
  var slotMapIfcInternalOrExternalEnum = new Int32Array([3, 5, 1, 2, 0, 4]);
21795
21806
  var encodedDataIfcInternalOrExternalEnum = new TextEncoder().encode(".EXTERNAL_WATER..NOTDEFINED..EXTERNAL..EXTERNAL_EARTH..INTERNAL..EXTERNAL_FIRE.");
21796
21807
  var IfcInternalOrExternalEnumSearch = new MinimalPerfectHash(gMapIfcInternalOrExternalEnum, prefixSumAddressIfcInternalOrExternalEnum, slotMapIfcInternalOrExternalEnum, encodedDataIfcInternalOrExternalEnum);
21797
- var parser102 = StepEnumParser.Instance;
21808
+ var parser102 = step_enum_parser_default.Instance;
21798
21809
  function IfcInternalOrExternalEnumDeserializeStep(input, cursor, endCursor) {
21799
21810
  return parser102.extract(IfcInternalOrExternalEnumSearch, input, cursor, endCursor);
21800
21811
  }
@@ -21813,7 +21824,7 @@ var prefixSumAddressIfcInventoryTypeEnum = new Uint32Array([0, 16, 36, 49, 61, 7
21813
21824
  var slotMapIfcInventoryTypeEnum = new Int32Array([1, 2, 3, 4, 0]);
21814
21825
  var encodedDataIfcInventoryTypeEnum = new TextEncoder().encode(".SPACEINVENTORY..FURNITUREINVENTORY..USERDEFINED..NOTDEFINED..ASSETINVENTORY.");
21815
21826
  var IfcInventoryTypeEnumSearch = new MinimalPerfectHash(gMapIfcInventoryTypeEnum, prefixSumAddressIfcInventoryTypeEnum, slotMapIfcInventoryTypeEnum, encodedDataIfcInventoryTypeEnum);
21816
- var parser103 = StepEnumParser.Instance;
21827
+ var parser103 = step_enum_parser_default.Instance;
21817
21828
  function IfcInventoryTypeEnumDeserializeStep(input, cursor, endCursor) {
21818
21829
  return parser103.extract(IfcInventoryTypeEnumSearch, input, cursor, endCursor);
21819
21830
  }
@@ -21831,7 +21842,7 @@ var prefixSumAddressIfcJunctionBoxTypeEnum = new Uint32Array([0, 6, 19, 26, 38])
21831
21842
  var slotMapIfcJunctionBoxTypeEnum = new Int32Array([0, 2, 1, 3]);
21832
21843
  var encodedDataIfcJunctionBoxTypeEnum = new TextEncoder().encode(".DATA..USERDEFINED..POWER..NOTDEFINED.");
21833
21844
  var IfcJunctionBoxTypeEnumSearch = new MinimalPerfectHash(gMapIfcJunctionBoxTypeEnum, prefixSumAddressIfcJunctionBoxTypeEnum, slotMapIfcJunctionBoxTypeEnum, encodedDataIfcJunctionBoxTypeEnum);
21834
- var parser104 = StepEnumParser.Instance;
21845
+ var parser104 = step_enum_parser_default.Instance;
21835
21846
  function IfcJunctionBoxTypeEnumDeserializeStep(input, cursor, endCursor) {
21836
21847
  return parser104.extract(IfcJunctionBoxTypeEnumSearch, input, cursor, endCursor);
21837
21848
  }
@@ -21849,7 +21860,7 @@ var prefixSumAddressIfcKnotType = new Uint32Array([0, 21, 36, 60, 73]);
21849
21860
  var slotMapIfcKnotType = new Int32Array([1, 0, 2, 3]);
21850
21861
  var encodedDataIfcKnotType = new TextEncoder().encode(".QUASI_UNIFORM_KNOTS..UNIFORM_KNOTS..PIECEWISE_BEZIER_KNOTS..UNSPECIFIED.");
21851
21862
  var IfcKnotTypeSearch = new MinimalPerfectHash(gMapIfcKnotType, prefixSumAddressIfcKnotType, slotMapIfcKnotType, encodedDataIfcKnotType);
21852
- var parser105 = StepEnumParser.Instance;
21863
+ var parser105 = step_enum_parser_default.Instance;
21853
21864
  function IfcKnotTypeDeserializeStep(input, cursor, endCursor) {
21854
21865
  return parser105.extract(IfcKnotTypeSearch, input, cursor, endCursor);
21855
21866
  }
@@ -21884,7 +21895,7 @@ var prefixSumAddressIfcLaborResourceTypeEnum = new Uint32Array([0, 6, 18, 28, 38
21884
21895
  var slotMapIfcLaborResourceTypeEnum = new Int32Array([9, 20, 2, 7, 13, 17, 11, 19, 5, 15, 14, 12, 8, 6, 16, 4, 1, 10, 18, 3, 0]);
21885
21896
  var encodedDataIfcLaborResourceTypeEnum = new TextEncoder().encode(".HVAC..NOTDEFINED..CLEANING..FLOORING..PAVING..STEELWORK..MASONRY..USERDEFINED..ELECTRIC..ROOFING..PLUMBING..PAINTING..GENERAL..FINISHING..SITEGRADING..DRYWALL..CARPENTRY..LANDSCAPING..SURVEYING..CONCRETE..ADMINISTRATION.");
21886
21897
  var IfcLaborResourceTypeEnumSearch = new MinimalPerfectHash(gMapIfcLaborResourceTypeEnum, prefixSumAddressIfcLaborResourceTypeEnum, slotMapIfcLaborResourceTypeEnum, encodedDataIfcLaborResourceTypeEnum);
21887
- var parser106 = StepEnumParser.Instance;
21898
+ var parser106 = step_enum_parser_default.Instance;
21888
21899
  function IfcLaborResourceTypeEnumDeserializeStep(input, cursor, endCursor) {
21889
21900
  return parser106.extract(IfcLaborResourceTypeEnumSearch, input, cursor, endCursor);
21890
21901
  }
@@ -21909,7 +21920,7 @@ var prefixSumAddressIfcLampTypeEnum = new Uint32Array([0, 13, 33, 45, 66, 79, 92
21909
21920
  var slotMapIfcLampTypeEnum = new Int32Array([6, 0, 10, 3, 9, 1, 4, 5, 8, 7, 2]);
21910
21921
  var encodedDataIfcLampTypeEnum = new TextEncoder().encode(".METALHALIDE..COMPACTFLUORESCENT..NOTDEFINED..HIGHPRESSUREMERCURY..USERDEFINED..FLUORESCENT..HIGHPRESSURESODIUM..LED..TUNGSTENFILAMENT..OLED..HALOGEN.");
21911
21922
  var IfcLampTypeEnumSearch = new MinimalPerfectHash(gMapIfcLampTypeEnum, prefixSumAddressIfcLampTypeEnum, slotMapIfcLampTypeEnum, encodedDataIfcLampTypeEnum);
21912
- var parser107 = StepEnumParser.Instance;
21923
+ var parser107 = step_enum_parser_default.Instance;
21913
21924
  function IfcLampTypeEnumDeserializeStep(input, cursor, endCursor) {
21914
21925
  return parser107.extract(IfcLampTypeEnumSearch, input, cursor, endCursor);
21915
21926
  }
@@ -21926,7 +21937,7 @@ var prefixSumAddressIfcLayerSetDirectionEnum = new Uint32Array([0, 7, 14, 21]);
21926
21937
  var slotMapIfcLayerSetDirectionEnum = new Int32Array([2, 1, 0]);
21927
21938
  var encodedDataIfcLayerSetDirectionEnum = new TextEncoder().encode(".AXIS3..AXIS2..AXIS1.");
21928
21939
  var IfcLayerSetDirectionEnumSearch = new MinimalPerfectHash(gMapIfcLayerSetDirectionEnum, prefixSumAddressIfcLayerSetDirectionEnum, slotMapIfcLayerSetDirectionEnum, encodedDataIfcLayerSetDirectionEnum);
21929
- var parser108 = StepEnumParser.Instance;
21940
+ var parser108 = step_enum_parser_default.Instance;
21930
21941
  function IfcLayerSetDirectionEnumDeserializeStep(input, cursor, endCursor) {
21931
21942
  return parser108.extract(IfcLayerSetDirectionEnumSearch, input, cursor, endCursor);
21932
21943
  }
@@ -21944,7 +21955,7 @@ var prefixSumAddressIfcLightDistributionCurveEnum = new Uint32Array([0, 8, 16, 2
21944
21955
  var slotMapIfcLightDistributionCurveEnum = new Int32Array([1, 0, 2, 3]);
21945
21956
  var encodedDataIfcLightDistributionCurveEnum = new TextEncoder().encode(".TYPE_B..TYPE_A..TYPE_C..NOTDEFINED.");
21946
21957
  var IfcLightDistributionCurveEnumSearch = new MinimalPerfectHash(gMapIfcLightDistributionCurveEnum, prefixSumAddressIfcLightDistributionCurveEnum, slotMapIfcLightDistributionCurveEnum, encodedDataIfcLightDistributionCurveEnum);
21947
- var parser109 = StepEnumParser.Instance;
21958
+ var parser109 = step_enum_parser_default.Instance;
21948
21959
  function IfcLightDistributionCurveEnumDeserializeStep(input, cursor, endCursor) {
21949
21960
  return parser109.extract(IfcLightDistributionCurveEnumSearch, input, cursor, endCursor);
21950
21961
  }
@@ -21969,7 +21980,7 @@ var prefixSumAddressIfcLightEmissionSourceEnum = new Uint32Array([0, 12, 25, 44,
21969
21980
  var slotMapIfcLightEmissionSourceEnum = new Int32Array([10, 8, 5, 1, 2, 3, 4, 6, 0, 9, 7]);
21970
21981
  var encodedDataIfcLightEmissionSourceEnum = new TextEncoder().encode(".NOTDEFINED..METALHALIDE..LOWPRESSURESODIUM..FLUORESCENT..HIGHPRESSUREMERCURY..HIGHPRESSURESODIUM..LIGHTEMITTINGDIODE..LOWVOLTAGEHALOGEN..COMPACTFLUORESCENT..TUNGSTENFILAMENT..MAINVOLTAGEHALOGEN.");
21971
21982
  var IfcLightEmissionSourceEnumSearch = new MinimalPerfectHash(gMapIfcLightEmissionSourceEnum, prefixSumAddressIfcLightEmissionSourceEnum, slotMapIfcLightEmissionSourceEnum, encodedDataIfcLightEmissionSourceEnum);
21972
- var parser110 = StepEnumParser.Instance;
21983
+ var parser110 = step_enum_parser_default.Instance;
21973
21984
  function IfcLightEmissionSourceEnumDeserializeStep(input, cursor, endCursor) {
21974
21985
  return parser110.extract(IfcLightEmissionSourceEnumSearch, input, cursor, endCursor);
21975
21986
  }
@@ -21988,7 +21999,7 @@ var prefixSumAddressIfcLightFixtureTypeEnum = new Uint32Array([0, 18, 35, 47, 60
21988
21999
  var slotMapIfcLightFixtureTypeEnum = new Int32Array([2, 1, 4, 0, 3]);
21989
22000
  var encodedDataIfcLightFixtureTypeEnum = new TextEncoder().encode(".SECURITYLIGHTING..DIRECTIONSOURCE..NOTDEFINED..POINTSOURCE..USERDEFINED.");
21990
22001
  var IfcLightFixtureTypeEnumSearch = new MinimalPerfectHash(gMapIfcLightFixtureTypeEnum, prefixSumAddressIfcLightFixtureTypeEnum, slotMapIfcLightFixtureTypeEnum, encodedDataIfcLightFixtureTypeEnum);
21991
- var parser111 = StepEnumParser.Instance;
22002
+ var parser111 = step_enum_parser_default.Instance;
21992
22003
  function IfcLightFixtureTypeEnumDeserializeStep(input, cursor, endCursor) {
21993
22004
  return parser111.extract(IfcLightFixtureTypeEnumSearch, input, cursor, endCursor);
21994
22005
  }
@@ -22007,7 +22018,7 @@ var prefixSumAddressIfcLoadGroupTypeEnum = new Uint32Array([0, 18, 30, 42, 55, 6
22007
22018
  var slotMapIfcLoadGroupTypeEnum = new Int32Array([2, 4, 0, 3, 1]);
22008
22019
  var encodedDataIfcLoadGroupTypeEnum = new TextEncoder().encode(".LOAD_COMBINATION..NOTDEFINED..LOAD_GROUP..USERDEFINED..LOAD_CASE.");
22009
22020
  var IfcLoadGroupTypeEnumSearch = new MinimalPerfectHash(gMapIfcLoadGroupTypeEnum, prefixSumAddressIfcLoadGroupTypeEnum, slotMapIfcLoadGroupTypeEnum, encodedDataIfcLoadGroupTypeEnum);
22010
- var parser112 = StepEnumParser.Instance;
22021
+ var parser112 = step_enum_parser_default.Instance;
22011
22022
  function IfcLoadGroupTypeEnumDeserializeStep(input, cursor, endCursor) {
22012
22023
  return parser112.extract(IfcLoadGroupTypeEnumSearch, input, cursor, endCursor);
22013
22024
  }
@@ -22026,7 +22037,7 @@ var prefixSumAddressIfcLogicalOperatorEnum = new Uint32Array([0, 15, 27, 38, 50,
22026
22037
  var slotMapIfcLogicalOperatorEnum = new Int32Array([3, 0, 1, 2, 4]);
22027
22038
  var encodedDataIfcLogicalOperatorEnum = new TextEncoder().encode(".LOGICALNOTAND..LOGICALAND..LOGICALOR..LOGICALXOR..LOGICALNOTOR.");
22028
22039
  var IfcLogicalOperatorEnumSearch = new MinimalPerfectHash(gMapIfcLogicalOperatorEnum, prefixSumAddressIfcLogicalOperatorEnum, slotMapIfcLogicalOperatorEnum, encodedDataIfcLogicalOperatorEnum);
22029
- var parser113 = StepEnumParser.Instance;
22040
+ var parser113 = step_enum_parser_default.Instance;
22030
22041
  function IfcLogicalOperatorEnumDeserializeStep(input, cursor, endCursor) {
22031
22042
  return parser113.extract(IfcLogicalOperatorEnumSearch, input, cursor, endCursor);
22032
22043
  }
@@ -22052,7 +22063,7 @@ var prefixSumAddressIfcMechanicalFastenerTypeEnum = new Uint32Array([0, 13, 24,
22052
22063
  var slotMapIfcMechanicalFastenerTypeEnum = new Int32Array([10, 4, 8, 0, 9, 5, 3, 1, 7, 2, 6, 11]);
22053
22064
  var encodedDataIfcMechanicalFastenerTypeEnum = new TextEncoder().encode(".USERDEFINED..NAILPLATE..STAPLE..ANCHORBOLT..STUDSHEARCONNECTOR..RIVET..NAIL..BOLT..SHEARCONNECTOR..DOWEL..SCREW..NOTDEFINED.");
22054
22065
  var IfcMechanicalFastenerTypeEnumSearch = new MinimalPerfectHash(gMapIfcMechanicalFastenerTypeEnum, prefixSumAddressIfcMechanicalFastenerTypeEnum, slotMapIfcMechanicalFastenerTypeEnum, encodedDataIfcMechanicalFastenerTypeEnum);
22055
- var parser114 = StepEnumParser.Instance;
22066
+ var parser114 = step_enum_parser_default.Instance;
22056
22067
  function IfcMechanicalFastenerTypeEnumDeserializeStep(input, cursor, endCursor) {
22057
22068
  return parser114.extract(IfcMechanicalFastenerTypeEnumSearch, input, cursor, endCursor);
22058
22069
  }
@@ -22073,7 +22084,7 @@ var prefixSumAddressIfcMedicalDeviceTypeEnum = new Uint32Array([0, 13, 25, 42, 5
22073
22084
  var slotMapIfcMedicalDeviceTypeEnum = new Int32Array([1, 6, 2, 0, 5, 3, 4]);
22074
22085
  var encodedDataIfcMedicalDeviceTypeEnum = new TextEncoder().encode(".FEEDAIRUNIT..NOTDEFINED..OXYGENGENERATOR..AIRSTATION..USERDEFINED..OXYGENPLANT..VACUUMSTATION.");
22075
22086
  var IfcMedicalDeviceTypeEnumSearch = new MinimalPerfectHash(gMapIfcMedicalDeviceTypeEnum, prefixSumAddressIfcMedicalDeviceTypeEnum, slotMapIfcMedicalDeviceTypeEnum, encodedDataIfcMedicalDeviceTypeEnum);
22076
- var parser115 = StepEnumParser.Instance;
22087
+ var parser115 = step_enum_parser_default.Instance;
22077
22088
  function IfcMedicalDeviceTypeEnumDeserializeStep(input, cursor, endCursor) {
22078
22089
  return parser115.extract(IfcMedicalDeviceTypeEnumSearch, input, cursor, endCursor);
22079
22090
  }
@@ -22101,7 +22112,7 @@ var prefixSumAddressIfcMemberTypeEnum = new Uint32Array([0, 10, 19, 25, 33, 41,
22101
22112
  var slotMapIfcMemberTypeEnum = new Int32Array([9, 4, 11, 2, 3, 7, 8, 12, 1, 13, 6, 5, 10, 0]);
22102
22113
  var encodedDataIfcMemberTypeEnum = new TextEncoder().encode(".STRINGER..MULLION..STUD..COLLAR..MEMBER..PURLIN..RAFTER..USERDEFINED..CHORD..NOTDEFINED..POST..PLATE..STRUT..BRACE.");
22103
22114
  var IfcMemberTypeEnumSearch = new MinimalPerfectHash(gMapIfcMemberTypeEnum, prefixSumAddressIfcMemberTypeEnum, slotMapIfcMemberTypeEnum, encodedDataIfcMemberTypeEnum);
22104
- var parser116 = StepEnumParser.Instance;
22115
+ var parser116 = step_enum_parser_default.Instance;
22105
22116
  function IfcMemberTypeEnumDeserializeStep(input, cursor, endCursor) {
22106
22117
  return parser116.extract(IfcMemberTypeEnumSearch, input, cursor, endCursor);
22107
22118
  }
@@ -22120,7 +22131,7 @@ var prefixSumAddressIfcMotorConnectionTypeEnum = new Uint32Array([0, 13, 23, 35,
22120
22131
  var slotMapIfcMotorConnectionTypeEnum = new Int32Array([2, 1, 4, 3, 0]);
22121
22132
  var encodedDataIfcMotorConnectionTypeEnum = new TextEncoder().encode(".DIRECTDRIVE..COUPLING..NOTDEFINED..USERDEFINED..BELTDRIVE.");
22122
22133
  var IfcMotorConnectionTypeEnumSearch = new MinimalPerfectHash(gMapIfcMotorConnectionTypeEnum, prefixSumAddressIfcMotorConnectionTypeEnum, slotMapIfcMotorConnectionTypeEnum, encodedDataIfcMotorConnectionTypeEnum);
22123
- var parser117 = StepEnumParser.Instance;
22134
+ var parser117 = step_enum_parser_default.Instance;
22124
22135
  function IfcMotorConnectionTypeEnumDeserializeStep(input, cursor, endCursor) {
22125
22136
  return parser117.extract(IfcMotorConnectionTypeEnumSearch, input, cursor, endCursor);
22126
22137
  }
@@ -22135,7 +22146,7 @@ var prefixSumAddressIfcNullStyle = new Uint32Array([0, 6]);
22135
22146
  var slotMapIfcNullStyle = new Int32Array([0]);
22136
22147
  var encodedDataIfcNullStyle = new TextEncoder().encode(".NULL.");
22137
22148
  var IfcNullStyleSearch = new MinimalPerfectHash(gMapIfcNullStyle, prefixSumAddressIfcNullStyle, slotMapIfcNullStyle, encodedDataIfcNullStyle);
22138
- var parser118 = StepEnumParser.Instance;
22149
+ var parser118 = step_enum_parser_default.Instance;
22139
22150
  function IfcNullStyleDeserializeStep(input, cursor, endCursor) {
22140
22151
  return parser118.extract(IfcNullStyleSearch, input, cursor, endCursor);
22141
22152
  }
@@ -22162,7 +22173,7 @@ var prefixSumAddressIfcObjectiveEnum = new Uint32Array([0, 16, 30, 43, 61, 72, 8
22162
22173
  var slotMapIfcObjectiveEnum = new Int32Array([0, 2, 11, 10, 6, 9, 4, 7, 3, 1, 12, 8, 5]);
22163
22174
  var encodedDataIfcObjectiveEnum = new TextEncoder().encode(".CODECOMPLIANCE..DESIGNINTENT..USERDEFINED..TRIGGERCONDITION..MODELVIEW..SPECIFICATION..HEALTHANDSAFETY..PARAMETER..EXTERNAL..CODEWAIVER..NOTDEFINED..REQUIREMENT..MERGECONFLICT.");
22164
22175
  var IfcObjectiveEnumSearch = new MinimalPerfectHash(gMapIfcObjectiveEnum, prefixSumAddressIfcObjectiveEnum, slotMapIfcObjectiveEnum, encodedDataIfcObjectiveEnum);
22165
- var parser119 = StepEnumParser.Instance;
22176
+ var parser119 = step_enum_parser_default.Instance;
22166
22177
  function IfcObjectiveEnumDeserializeStep(input, cursor, endCursor) {
22167
22178
  return parser119.extract(IfcObjectiveEnumSearch, input, cursor, endCursor);
22168
22179
  }
@@ -22184,7 +22195,7 @@ var prefixSumAddressIfcObjectTypeEnum = new Uint32Array([0, 10, 19, 26, 35, 47,
22184
22195
  var slotMapIfcObjectTypeEnum = new Int32Array([3, 1, 5, 2, 7, 6, 4, 0]);
22185
22196
  var encodedDataIfcObjectTypeEnum = new TextEncoder().encode(".RESOURCE..PROCESS..GROUP..CONTROL..NOTDEFINED..PROJECT..ACTOR..PRODUCT.");
22186
22197
  var IfcObjectTypeEnumSearch = new MinimalPerfectHash(gMapIfcObjectTypeEnum, prefixSumAddressIfcObjectTypeEnum, slotMapIfcObjectTypeEnum, encodedDataIfcObjectTypeEnum);
22187
- var parser120 = StepEnumParser.Instance;
22198
+ var parser120 = step_enum_parser_default.Instance;
22188
22199
  function IfcObjectTypeEnumDeserializeStep(input, cursor, endCursor) {
22189
22200
  return parser120.extract(IfcObjectTypeEnumSearch, input, cursor, endCursor);
22190
22201
  }
@@ -22207,7 +22218,7 @@ var prefixSumAddressIfcOccupantTypeEnum = new Uint32Array([0, 8, 18, 28, 36, 44,
22207
22218
  var slotMapIfcOccupantTypeEnum = new Int32Array([3, 0, 1, 2, 6, 8, 7, 5, 4]);
22208
22219
  var encodedDataIfcOccupantTypeEnum = new TextEncoder().encode(".LESSOR..ASSIGNEE..ASSIGNOR..LESSEE..TENANT..NOTDEFINED..USERDEFINED..OWNER..LETTINGAGENT.");
22209
22220
  var IfcOccupantTypeEnumSearch = new MinimalPerfectHash(gMapIfcOccupantTypeEnum, prefixSumAddressIfcOccupantTypeEnum, slotMapIfcOccupantTypeEnum, encodedDataIfcOccupantTypeEnum);
22210
- var parser121 = StepEnumParser.Instance;
22221
+ var parser121 = step_enum_parser_default.Instance;
22211
22222
  function IfcOccupantTypeEnumDeserializeStep(input, cursor, endCursor) {
22212
22223
  return parser121.extract(IfcOccupantTypeEnumSearch, input, cursor, endCursor);
22213
22224
  }
@@ -22225,7 +22236,7 @@ var prefixSumAddressIfcOpeningElementTypeEnum = new Uint32Array([0, 8, 17, 29, 4
22225
22236
  var slotMapIfcOpeningElementTypeEnum = new Int32Array([1, 0, 3, 2]);
22226
22237
  var encodedDataIfcOpeningElementTypeEnum = new TextEncoder().encode(".RECESS..OPENING..NOTDEFINED..USERDEFINED.");
22227
22238
  var IfcOpeningElementTypeEnumSearch = new MinimalPerfectHash(gMapIfcOpeningElementTypeEnum, prefixSumAddressIfcOpeningElementTypeEnum, slotMapIfcOpeningElementTypeEnum, encodedDataIfcOpeningElementTypeEnum);
22228
- var parser122 = StepEnumParser.Instance;
22239
+ var parser122 = step_enum_parser_default.Instance;
22229
22240
  function IfcOpeningElementTypeEnumDeserializeStep(input, cursor, endCursor) {
22230
22241
  return parser122.extract(IfcOpeningElementTypeEnumSearch, input, cursor, endCursor);
22231
22242
  }
@@ -22246,7 +22257,7 @@ var prefixSumAddressIfcOutletTypeEnum = new Uint32Array([0, 22, 35, 52, 65, 84,
22246
22257
  var slotMapIfcOutletTypeEnum = new Int32Array([1, 2, 4, 5, 0, 3, 6]);
22247
22258
  var encodedDataIfcOutletTypeEnum = new TextEncoder().encode(".COMMUNICATIONSOUTLET..POWEROUTLET..TELEPHONEOUTLET..USERDEFINED..AUDIOVISUALOUTLET..DATAOUTLET..NOTDEFINED.");
22248
22259
  var IfcOutletTypeEnumSearch = new MinimalPerfectHash(gMapIfcOutletTypeEnum, prefixSumAddressIfcOutletTypeEnum, slotMapIfcOutletTypeEnum, encodedDataIfcOutletTypeEnum);
22249
- var parser123 = StepEnumParser.Instance;
22260
+ var parser123 = step_enum_parser_default.Instance;
22250
22261
  function IfcOutletTypeEnumDeserializeStep(input, cursor, endCursor) {
22251
22262
  return parser123.extract(IfcOutletTypeEnumSearch, input, cursor, endCursor);
22252
22263
  }
@@ -22262,7 +22273,7 @@ var prefixSumAddressIfcPerformanceHistoryTypeEnum = new Uint32Array([0, 13, 25])
22262
22273
  var slotMapIfcPerformanceHistoryTypeEnum = new Int32Array([0, 1]);
22263
22274
  var encodedDataIfcPerformanceHistoryTypeEnum = new TextEncoder().encode(".USERDEFINED..NOTDEFINED.");
22264
22275
  var IfcPerformanceHistoryTypeEnumSearch = new MinimalPerfectHash(gMapIfcPerformanceHistoryTypeEnum, prefixSumAddressIfcPerformanceHistoryTypeEnum, slotMapIfcPerformanceHistoryTypeEnum, encodedDataIfcPerformanceHistoryTypeEnum);
22265
- var parser124 = StepEnumParser.Instance;
22276
+ var parser124 = step_enum_parser_default.Instance;
22266
22277
  function IfcPerformanceHistoryTypeEnumDeserializeStep(input, cursor, endCursor) {
22267
22278
  return parser124.extract(IfcPerformanceHistoryTypeEnumSearch, input, cursor, endCursor);
22268
22279
  }
@@ -22281,7 +22292,7 @@ var prefixSumAddressIfcPermeableCoveringOperationEnum = new Uint32Array([0, 7, 1
22281
22292
  var slotMapIfcPermeableCoveringOperationEnum = new Int32Array([0, 4, 3, 2, 1]);
22282
22293
  var encodedDataIfcPermeableCoveringOperationEnum = new TextEncoder().encode(".GRILL..NOTDEFINED..USERDEFINED..SCREEN..LOUVER.");
22283
22294
  var IfcPermeableCoveringOperationEnumSearch = new MinimalPerfectHash(gMapIfcPermeableCoveringOperationEnum, prefixSumAddressIfcPermeableCoveringOperationEnum, slotMapIfcPermeableCoveringOperationEnum, encodedDataIfcPermeableCoveringOperationEnum);
22284
- var parser125 = StepEnumParser.Instance;
22295
+ var parser125 = step_enum_parser_default.Instance;
22285
22296
  function IfcPermeableCoveringOperationEnumDeserializeStep(input, cursor, endCursor) {
22286
22297
  return parser125.extract(IfcPermeableCoveringOperationEnumSearch, input, cursor, endCursor);
22287
22298
  }
@@ -22300,7 +22311,7 @@ var prefixSumAddressIfcPermitTypeEnum = new Uint32Array([0, 6, 18, 28, 41, 49]);
22300
22311
  var slotMapIfcPermitTypeEnum = new Int32Array([2, 4, 1, 3, 0]);
22301
22312
  var encodedDataIfcPermitTypeEnum = new TextEncoder().encode(".WORK..NOTDEFINED..BUILDING..USERDEFINED..ACCESS.");
22302
22313
  var IfcPermitTypeEnumSearch = new MinimalPerfectHash(gMapIfcPermitTypeEnum, prefixSumAddressIfcPermitTypeEnum, slotMapIfcPermitTypeEnum, encodedDataIfcPermitTypeEnum);
22303
- var parser126 = StepEnumParser.Instance;
22314
+ var parser126 = step_enum_parser_default.Instance;
22304
22315
  function IfcPermitTypeEnumDeserializeStep(input, cursor, endCursor) {
22305
22316
  return parser126.extract(IfcPermitTypeEnumSearch, input, cursor, endCursor);
22306
22317
  }
@@ -22317,7 +22328,7 @@ var prefixSumAddressIfcPhysicalOrVirtualEnum = new Uint32Array([0, 10, 19, 31]);
22317
22328
  var slotMapIfcPhysicalOrVirtualEnum = new Int32Array([0, 1, 2]);
22318
22329
  var encodedDataIfcPhysicalOrVirtualEnum = new TextEncoder().encode(".PHYSICAL..VIRTUAL..NOTDEFINED.");
22319
22330
  var IfcPhysicalOrVirtualEnumSearch = new MinimalPerfectHash(gMapIfcPhysicalOrVirtualEnum, prefixSumAddressIfcPhysicalOrVirtualEnum, slotMapIfcPhysicalOrVirtualEnum, encodedDataIfcPhysicalOrVirtualEnum);
22320
- var parser127 = StepEnumParser.Instance;
22331
+ var parser127 = step_enum_parser_default.Instance;
22321
22332
  function IfcPhysicalOrVirtualEnumDeserializeStep(input, cursor, endCursor) {
22322
22333
  return parser127.extract(IfcPhysicalOrVirtualEnumSearch, input, cursor, endCursor);
22323
22334
  }
@@ -22337,7 +22348,7 @@ var prefixSumAddressIfcPileConstructionEnum = new Uint32Array([0, 11, 23, 41, 55
22337
22348
  var slotMapIfcPileConstructionEnum = new Int32Array([1, 5, 2, 3, 4, 0]);
22338
22349
  var encodedDataIfcPileConstructionEnum = new TextEncoder().encode(".COMPOSITE..NOTDEFINED..PRECAST_CONCRETE..PREFAB_STEEL..USERDEFINED..CAST_IN_PLACE.");
22339
22350
  var IfcPileConstructionEnumSearch = new MinimalPerfectHash(gMapIfcPileConstructionEnum, prefixSumAddressIfcPileConstructionEnum, slotMapIfcPileConstructionEnum, encodedDataIfcPileConstructionEnum);
22340
- var parser128 = StepEnumParser.Instance;
22351
+ var parser128 = step_enum_parser_default.Instance;
22341
22352
  function IfcPileConstructionEnumDeserializeStep(input, cursor, endCursor) {
22342
22353
  return parser128.extract(IfcPileConstructionEnumSearch, input, cursor, endCursor);
22343
22354
  }
@@ -22359,7 +22370,7 @@ var prefixSumAddressIfcPileTypeEnum = new Uint32Array([0, 9, 19, 31, 38, 48, 56,
22359
22370
  var slotMapIfcPileTypeEnum = new Int32Array([5, 4, 7, 0, 3, 1, 6, 2]);
22360
22371
  var encodedDataIfcPileTypeEnum = new TextEncoder().encode(".SUPPORT..FRICTION..NOTDEFINED..BORED..COHESION..DRIVEN..USERDEFINED..JETGROUTING.");
22361
22372
  var IfcPileTypeEnumSearch = new MinimalPerfectHash(gMapIfcPileTypeEnum, prefixSumAddressIfcPileTypeEnum, slotMapIfcPileTypeEnum, encodedDataIfcPileTypeEnum);
22362
- var parser129 = StepEnumParser.Instance;
22373
+ var parser129 = step_enum_parser_default.Instance;
22363
22374
  function IfcPileTypeEnumDeserializeStep(input, cursor, endCursor) {
22364
22375
  return parser129.extract(IfcPileTypeEnumSearch, input, cursor, endCursor);
22365
22376
  }
@@ -22382,7 +22393,7 @@ var prefixSumAddressIfcPipeFittingTypeEnum = new Uint32Array([0, 11, 23, 36, 48,
22382
22393
  var slotMapIfcPipeFittingTypeEnum = new Int32Array([1, 8, 5, 6, 0, 4, 7, 3, 2]);
22383
22394
  var encodedDataIfcPipeFittingTypeEnum = new TextEncoder().encode(".CONNECTOR..NOTDEFINED..OBSTRUCTION..TRANSITION..BEND..JUNCTION..USERDEFINED..EXIT..ENTRY.");
22384
22395
  var IfcPipeFittingTypeEnumSearch = new MinimalPerfectHash(gMapIfcPipeFittingTypeEnum, prefixSumAddressIfcPipeFittingTypeEnum, slotMapIfcPipeFittingTypeEnum, encodedDataIfcPipeFittingTypeEnum);
22385
- var parser130 = StepEnumParser.Instance;
22396
+ var parser130 = step_enum_parser_default.Instance;
22386
22397
  function IfcPipeFittingTypeEnumDeserializeStep(input, cursor, endCursor) {
22387
22398
  return parser130.extract(IfcPipeFittingTypeEnumSearch, input, cursor, endCursor);
22388
22399
  }
@@ -22403,7 +22414,7 @@ var prefixSumAddressIfcPipeSegmentTypeEnum = new Uint32Array([0, 17, 26, 33, 41,
22403
22414
  var slotMapIfcPipeSegmentTypeEnum = new Int32Array([1, 0, 4, 3, 6, 2, 5]);
22404
22415
  var encodedDataIfcPipeSegmentTypeEnum = new TextEncoder().encode(".FLEXIBLESEGMENT..CULVERT..SPOOL..GUTTER..NOTDEFINED..RIGIDSEGMENT..USERDEFINED.");
22405
22416
  var IfcPipeSegmentTypeEnumSearch = new MinimalPerfectHash(gMapIfcPipeSegmentTypeEnum, prefixSumAddressIfcPipeSegmentTypeEnum, slotMapIfcPipeSegmentTypeEnum, encodedDataIfcPipeSegmentTypeEnum);
22406
- var parser131 = StepEnumParser.Instance;
22417
+ var parser131 = step_enum_parser_default.Instance;
22407
22418
  function IfcPipeSegmentTypeEnumDeserializeStep(input, cursor, endCursor) {
22408
22419
  return parser131.extract(IfcPipeSegmentTypeEnumSearch, input, cursor, endCursor);
22409
22420
  }
@@ -22421,7 +22432,7 @@ var prefixSumAddressIfcPlateTypeEnum = new Uint32Array([0, 7, 20, 35, 47]);
22421
22432
  var slotMapIfcPlateTypeEnum = new Int32Array([1, 2, 0, 3]);
22422
22433
  var encodedDataIfcPlateTypeEnum = new TextEncoder().encode(".SHEET..USERDEFINED..CURTAIN_PANEL..NOTDEFINED.");
22423
22434
  var IfcPlateTypeEnumSearch = new MinimalPerfectHash(gMapIfcPlateTypeEnum, prefixSumAddressIfcPlateTypeEnum, slotMapIfcPlateTypeEnum, encodedDataIfcPlateTypeEnum);
22424
- var parser132 = StepEnumParser.Instance;
22435
+ var parser132 = step_enum_parser_default.Instance;
22425
22436
  function IfcPlateTypeEnumDeserializeStep(input, cursor, endCursor) {
22426
22437
  return parser132.extract(IfcPlateTypeEnumSearch, input, cursor, endCursor);
22427
22438
  }
@@ -22438,7 +22449,7 @@ var prefixSumAddressIfcPreferredSurfaceCurveRepresentation = new Uint32Array([0,
22438
22449
  var slotMapIfcPreferredSurfaceCurveRepresentation = new Int32Array([1, 2, 0]);
22439
22450
  var encodedDataIfcPreferredSurfaceCurveRepresentation = new TextEncoder().encode(".PCURVE_S1..PCURVE_S2..CURVE3D.");
22440
22451
  var IfcPreferredSurfaceCurveRepresentationSearch = new MinimalPerfectHash(gMapIfcPreferredSurfaceCurveRepresentation, prefixSumAddressIfcPreferredSurfaceCurveRepresentation, slotMapIfcPreferredSurfaceCurveRepresentation, encodedDataIfcPreferredSurfaceCurveRepresentation);
22441
- var parser133 = StepEnumParser.Instance;
22452
+ var parser133 = step_enum_parser_default.Instance;
22442
22453
  function IfcPreferredSurfaceCurveRepresentationDeserializeStep(input, cursor, endCursor) {
22443
22454
  return parser133.extract(IfcPreferredSurfaceCurveRepresentationSearch, input, cursor, endCursor);
22444
22455
  }
@@ -22461,7 +22472,7 @@ var prefixSumAddressIfcProcedureTypeEnum = new Uint32Array([0, 13, 25, 35, 48, 6
22461
22472
  var slotMapIfcProcedureTypeEnum = new Int32Array([1, 4, 5, 3, 2, 6, 7, 0, 8]);
22462
22473
  var encodedDataIfcProcedureTypeEnum = new TextEncoder().encode(".ADVICE_NOTE..DIAGNOSTIC..SHUTDOWN..CALIBRATION..ADVICE_WARNING..STARTUP..USERDEFINED..ADVICE_CAUTION..NOTDEFINED.");
22463
22474
  var IfcProcedureTypeEnumSearch = new MinimalPerfectHash(gMapIfcProcedureTypeEnum, prefixSumAddressIfcProcedureTypeEnum, slotMapIfcProcedureTypeEnum, encodedDataIfcProcedureTypeEnum);
22464
- var parser134 = StepEnumParser.Instance;
22475
+ var parser134 = step_enum_parser_default.Instance;
22465
22476
  function IfcProcedureTypeEnumDeserializeStep(input, cursor, endCursor) {
22466
22477
  return parser134.extract(IfcProcedureTypeEnumSearch, input, cursor, endCursor);
22467
22478
  }
@@ -22477,7 +22488,7 @@ var prefixSumAddressIfcProfileTypeEnum = new Uint32Array([0, 7, 13]);
22477
22488
  var slotMapIfcProfileTypeEnum = new Int32Array([0, 1]);
22478
22489
  var encodedDataIfcProfileTypeEnum = new TextEncoder().encode(".CURVE..AREA.");
22479
22490
  var IfcProfileTypeEnumSearch = new MinimalPerfectHash(gMapIfcProfileTypeEnum, prefixSumAddressIfcProfileTypeEnum, slotMapIfcProfileTypeEnum, encodedDataIfcProfileTypeEnum);
22480
- var parser135 = StepEnumParser.Instance;
22491
+ var parser135 = step_enum_parser_default.Instance;
22481
22492
  function IfcProfileTypeEnumDeserializeStep(input, cursor, endCursor) {
22482
22493
  return parser135.extract(IfcProfileTypeEnumSearch, input, cursor, endCursor);
22483
22494
  }
@@ -22493,7 +22504,7 @@ var prefixSumAddressIfcProjectedOrTrueLengthEnum = new Uint32Array([0, 18, 31]);
22493
22504
  var slotMapIfcProjectedOrTrueLengthEnum = new Int32Array([0, 1]);
22494
22505
  var encodedDataIfcProjectedOrTrueLengthEnum = new TextEncoder().encode(".PROJECTED_LENGTH..TRUE_LENGTH.");
22495
22506
  var IfcProjectedOrTrueLengthEnumSearch = new MinimalPerfectHash(gMapIfcProjectedOrTrueLengthEnum, prefixSumAddressIfcProjectedOrTrueLengthEnum, slotMapIfcProjectedOrTrueLengthEnum, encodedDataIfcProjectedOrTrueLengthEnum);
22496
- var parser136 = StepEnumParser.Instance;
22507
+ var parser136 = step_enum_parser_default.Instance;
22497
22508
  function IfcProjectedOrTrueLengthEnumDeserializeStep(input, cursor, endCursor) {
22498
22509
  return parser136.extract(IfcProjectedOrTrueLengthEnumSearch, input, cursor, endCursor);
22499
22510
  }
@@ -22509,7 +22520,7 @@ var prefixSumAddressIfcProjectionElementTypeEnum = new Uint32Array([0, 13, 25]);
22509
22520
  var slotMapIfcProjectionElementTypeEnum = new Int32Array([0, 1]);
22510
22521
  var encodedDataIfcProjectionElementTypeEnum = new TextEncoder().encode(".USERDEFINED..NOTDEFINED.");
22511
22522
  var IfcProjectionElementTypeEnumSearch = new MinimalPerfectHash(gMapIfcProjectionElementTypeEnum, prefixSumAddressIfcProjectionElementTypeEnum, slotMapIfcProjectionElementTypeEnum, encodedDataIfcProjectionElementTypeEnum);
22512
- var parser137 = StepEnumParser.Instance;
22523
+ var parser137 = step_enum_parser_default.Instance;
22513
22524
  function IfcProjectionElementTypeEnumDeserializeStep(input, cursor, endCursor) {
22514
22525
  return parser137.extract(IfcProjectionElementTypeEnumSearch, input, cursor, endCursor);
22515
22526
  }
@@ -22530,7 +22541,7 @@ var prefixSumAddressIfcProjectOrderTypeEnum = new Uint32Array([0, 22, 33, 46, 58
22530
22541
  var slotMapIfcProjectOrderTypeEnum = new Int32Array([1, 4, 0, 6, 3, 5, 2]);
22531
22542
  var encodedDataIfcProjectOrderTypeEnum = new TextEncoder().encode(".MAINTENANCEWORKORDER..WORKORDER..CHANGEORDER..NOTDEFINED..PURCHASEORDER..USERDEFINED..MOVEORDER.");
22532
22543
  var IfcProjectOrderTypeEnumSearch = new MinimalPerfectHash(gMapIfcProjectOrderTypeEnum, prefixSumAddressIfcProjectOrderTypeEnum, slotMapIfcProjectOrderTypeEnum, encodedDataIfcProjectOrderTypeEnum);
22533
- var parser138 = StepEnumParser.Instance;
22544
+ var parser138 = step_enum_parser_default.Instance;
22534
22545
  function IfcProjectOrderTypeEnumDeserializeStep(input, cursor, endCursor) {
22535
22546
  return parser138.extract(IfcProjectOrderTypeEnumSearch, input, cursor, endCursor);
22536
22547
  }
@@ -22552,7 +22563,7 @@ var prefixSumAddressIfcPropertySetTemplateTypeEnum = new Uint32Array([0, 20, 43,
22552
22563
  var slotMapIfcPropertySetTemplateTypeEnum = new Int32Array([4, 2, 5, 0, 6, 3, 1, 7]);
22553
22564
  var encodedDataIfcPropertySetTemplateTypeEnum = new TextEncoder().encode(".QTO_TYPEDRIVENONLY..PSET_OCCURRENCEDRIVEN..QTO_TYPEDRIVENOVERRIDE..PSET_TYPEDRIVENONLY..QTO_OCCURRENCEDRIVEN..PSET_PERFORMANCEDRIVEN..PSET_TYPEDRIVENOVERRIDE..NOTDEFINED.");
22554
22565
  var IfcPropertySetTemplateTypeEnumSearch = new MinimalPerfectHash(gMapIfcPropertySetTemplateTypeEnum, prefixSumAddressIfcPropertySetTemplateTypeEnum, slotMapIfcPropertySetTemplateTypeEnum, encodedDataIfcPropertySetTemplateTypeEnum);
22555
- var parser139 = StepEnumParser.Instance;
22566
+ var parser139 = step_enum_parser_default.Instance;
22556
22567
  function IfcPropertySetTemplateTypeEnumDeserializeStep(input, cursor, endCursor) {
22557
22568
  return parser139.extract(IfcPropertySetTemplateTypeEnumSearch, input, cursor, endCursor);
22558
22569
  }
@@ -22572,7 +22583,7 @@ var prefixSumAddressIfcProtectiveDeviceTrippingUnitTypeEnum = new Uint32Array([0
22572
22583
  var slotMapIfcProtectiveDeviceTrippingUnitTypeEnum = new Int32Array([1, 4, 0, 3, 2, 5]);
22573
22584
  var encodedDataIfcProtectiveDeviceTrippingUnitTypeEnum = new TextEncoder().encode(".ELECTROMAGNETIC..USERDEFINED..ELECTRONIC..THERMAL..RESIDUALCURRENT..NOTDEFINED.");
22574
22585
  var IfcProtectiveDeviceTrippingUnitTypeEnumSearch = new MinimalPerfectHash(gMapIfcProtectiveDeviceTrippingUnitTypeEnum, prefixSumAddressIfcProtectiveDeviceTrippingUnitTypeEnum, slotMapIfcProtectiveDeviceTrippingUnitTypeEnum, encodedDataIfcProtectiveDeviceTrippingUnitTypeEnum);
22575
- var parser140 = StepEnumParser.Instance;
22586
+ var parser140 = step_enum_parser_default.Instance;
22576
22587
  function IfcProtectiveDeviceTrippingUnitTypeEnumDeserializeStep(input, cursor, endCursor) {
22577
22588
  return parser140.extract(IfcProtectiveDeviceTrippingUnitTypeEnumSearch, input, cursor, endCursor);
22578
22589
  }
@@ -22595,7 +22606,7 @@ var prefixSumAddressIfcProtectiveDeviceTypeEnum = new Uint32Array([0, 16, 26, 44
22595
22606
  var slotMapIfcProtectiveDeviceTypeEnum = new Int32Array([2, 6, 3, 8, 1, 0, 4, 5, 7]);
22596
22607
  var encodedDataIfcProtectiveDeviceTypeEnum = new TextEncoder().encode(".EARTHINGSWITCH..VARISTOR..FUSEDISCONNECTOR..NOTDEFINED..EARTHLEAKAGECIRCUITBREAKER..CIRCUITBREAKER..RESIDUALCURRENTCIRCUITBREAKER..RESIDUALCURRENTSWITCH..USERDEFINED.");
22597
22608
  var IfcProtectiveDeviceTypeEnumSearch = new MinimalPerfectHash(gMapIfcProtectiveDeviceTypeEnum, prefixSumAddressIfcProtectiveDeviceTypeEnum, slotMapIfcProtectiveDeviceTypeEnum, encodedDataIfcProtectiveDeviceTypeEnum);
22598
- var parser141 = StepEnumParser.Instance;
22609
+ var parser141 = step_enum_parser_default.Instance;
22599
22610
  function IfcProtectiveDeviceTypeEnumDeserializeStep(input, cursor, endCursor) {
22600
22611
  return parser141.extract(IfcProtectiveDeviceTypeEnumSearch, input, cursor, endCursor);
22601
22612
  }
@@ -22618,7 +22629,7 @@ var prefixSumAddressIfcPumpTypeEnum = new Uint32Array([0, 12, 22, 39, 50, 67, 83
22618
22629
  var slotMapIfcPumpTypeEnum = new Int32Array([1, 4, 6, 2, 3, 5, 7, 0, 8]);
22619
22630
  var encodedDataIfcPumpTypeEnum = new TextEncoder().encode(".ENDSUCTION..SUMPPUMP..VERTICALTURBINE..SPLITCASE..SUBMERSIBLEPUMP..VERTICALINLINE..USERDEFINED..CIRCULATOR..NOTDEFINED.");
22620
22631
  var IfcPumpTypeEnumSearch = new MinimalPerfectHash(gMapIfcPumpTypeEnum, prefixSumAddressIfcPumpTypeEnum, slotMapIfcPumpTypeEnum, encodedDataIfcPumpTypeEnum);
22621
- var parser142 = StepEnumParser.Instance;
22632
+ var parser142 = step_enum_parser_default.Instance;
22622
22633
  function IfcPumpTypeEnumDeserializeStep(input, cursor, endCursor) {
22623
22634
  return parser142.extract(IfcPumpTypeEnumSearch, input, cursor, endCursor);
22624
22635
  }
@@ -22637,7 +22648,7 @@ var prefixSumAddressIfcRailingTypeEnum = new Uint32Array([0, 12, 25, 36, 46, 58]
22637
22648
  var slotMapIfcRailingTypeEnum = new Int32Array([2, 3, 1, 0, 4]);
22638
22649
  var encodedDataIfcRailingTypeEnum = new TextEncoder().encode(".BALUSTRADE..USERDEFINED..GUARDRAIL..HANDRAIL..NOTDEFINED.");
22639
22650
  var IfcRailingTypeEnumSearch = new MinimalPerfectHash(gMapIfcRailingTypeEnum, prefixSumAddressIfcRailingTypeEnum, slotMapIfcRailingTypeEnum, encodedDataIfcRailingTypeEnum);
22640
- var parser143 = StepEnumParser.Instance;
22651
+ var parser143 = step_enum_parser_default.Instance;
22641
22652
  function IfcRailingTypeEnumDeserializeStep(input, cursor, endCursor) {
22642
22653
  return parser143.extract(IfcRailingTypeEnumSearch, input, cursor, endCursor);
22643
22654
  }
@@ -22655,7 +22666,7 @@ var prefixSumAddressIfcRampFlightTypeEnum = new Uint32Array([0, 10, 23, 31, 43])
22655
22666
  var slotMapIfcRampFlightTypeEnum = new Int32Array([0, 2, 1, 3]);
22656
22667
  var encodedDataIfcRampFlightTypeEnum = new TextEncoder().encode(".STRAIGHT..USERDEFINED..SPIRAL..NOTDEFINED.");
22657
22668
  var IfcRampFlightTypeEnumSearch = new MinimalPerfectHash(gMapIfcRampFlightTypeEnum, prefixSumAddressIfcRampFlightTypeEnum, slotMapIfcRampFlightTypeEnum, encodedDataIfcRampFlightTypeEnum);
22658
- var parser144 = StepEnumParser.Instance;
22669
+ var parser144 = step_enum_parser_default.Instance;
22659
22670
  function IfcRampFlightTypeEnumDeserializeStep(input, cursor, endCursor) {
22660
22671
  return parser144.extract(IfcRampFlightTypeEnumSearch, input, cursor, endCursor);
22661
22672
  }
@@ -22677,7 +22688,7 @@ var prefixSumAddressIfcRampTypeEnum = new Uint32Array([0, 13, 29, 42, 61, 73, 92
22677
22688
  var slotMapIfcRampTypeEnum = new Int32Array([5, 4, 6, 0, 7, 2, 1, 3]);
22678
22689
  var encodedDataIfcRampTypeEnum = new TextEncoder().encode(".SPIRAL_RAMP..HALF_TURN_RAMP..USERDEFINED..STRAIGHT_RUN_RAMP..NOTDEFINED..QUARTER_TURN_RAMP..TWO_STRAIGHT_RUN_RAMP..TWO_QUARTER_TURN_RAMP.");
22679
22690
  var IfcRampTypeEnumSearch = new MinimalPerfectHash(gMapIfcRampTypeEnum, prefixSumAddressIfcRampTypeEnum, slotMapIfcRampTypeEnum, encodedDataIfcRampTypeEnum);
22680
- var parser145 = StepEnumParser.Instance;
22691
+ var parser145 = step_enum_parser_default.Instance;
22681
22692
  function IfcRampTypeEnumDeserializeStep(input, cursor, endCursor) {
22682
22693
  return parser145.extract(IfcRampTypeEnumSearch, input, cursor, endCursor);
22683
22694
  }
@@ -22699,7 +22710,7 @@ var prefixSumAddressIfcRecurrenceTypeEnum = new Uint32Array([0, 24, 49, 57, 75,
22699
22710
  var slotMapIfcRecurrenceTypeEnum = new Int32Array([6, 2, 1, 5, 3, 7, 0, 4]);
22700
22711
  var encodedDataIfcRecurrenceTypeEnum = new TextEncoder().encode(".YEARLY_BY_DAY_OF_MONTH..MONTHLY_BY_DAY_OF_MONTH..WEEKLY..BY_WEEKDAY_COUNT..MONTHLY_BY_POSITION..YEARLY_BY_POSITION..DAILY..BY_DAY_COUNT.");
22701
22712
  var IfcRecurrenceTypeEnumSearch = new MinimalPerfectHash(gMapIfcRecurrenceTypeEnum, prefixSumAddressIfcRecurrenceTypeEnum, slotMapIfcRecurrenceTypeEnum, encodedDataIfcRecurrenceTypeEnum);
22702
- var parser146 = StepEnumParser.Instance;
22713
+ var parser146 = step_enum_parser_default.Instance;
22703
22714
  function IfcRecurrenceTypeEnumDeserializeStep(input, cursor, endCursor) {
22704
22715
  return parser146.extract(IfcRecurrenceTypeEnumSearch, input, cursor, endCursor);
22705
22716
  }
@@ -22723,7 +22734,7 @@ var prefixSumAddressIfcReflectanceMethodEnum = new Uint32Array([0, 7, 19, 25, 34
22723
22734
  var slotMapIfcReflectanceMethodEnum = new Int32Array([6, 9, 3, 7, 5, 8, 0, 1, 2, 4]);
22724
22735
  var encodedDataIfcReflectanceMethodEnum = new TextEncoder().encode(".PHONG..NOTDEFINED..MATT..PLASTIC..MIRROR..STRAUSS..BLINN..FLAT..GLASS..METAL.");
22725
22736
  var IfcReflectanceMethodEnumSearch = new MinimalPerfectHash(gMapIfcReflectanceMethodEnum, prefixSumAddressIfcReflectanceMethodEnum, slotMapIfcReflectanceMethodEnum, encodedDataIfcReflectanceMethodEnum);
22726
- var parser147 = StepEnumParser.Instance;
22737
+ var parser147 = step_enum_parser_default.Instance;
22727
22738
  function IfcReflectanceMethodEnumDeserializeStep(input, cursor, endCursor) {
22728
22739
  return parser147.extract(IfcReflectanceMethodEnumSearch, input, cursor, endCursor);
22729
22740
  }
@@ -22747,7 +22758,7 @@ var prefixSumAddressIfcReinforcingBarRoleEnum = new Uint32Array([0, 10, 22, 29,
22747
22758
  var slotMapIfcReinforcingBarRoleEnum = new Int32Array([4, 9, 1, 7, 2, 3, 6, 5, 0, 8]);
22748
22759
  var encodedDataIfcReinforcingBarRoleEnum = new TextEncoder().encode(".PUNCHING..NOTDEFINED..SHEAR..ANCHORING..LIGATURE..STUD..RING..EDGE..MAIN..USERDEFINED.");
22749
22760
  var IfcReinforcingBarRoleEnumSearch = new MinimalPerfectHash(gMapIfcReinforcingBarRoleEnum, prefixSumAddressIfcReinforcingBarRoleEnum, slotMapIfcReinforcingBarRoleEnum, encodedDataIfcReinforcingBarRoleEnum);
22750
- var parser148 = StepEnumParser.Instance;
22761
+ var parser148 = step_enum_parser_default.Instance;
22751
22762
  function IfcReinforcingBarRoleEnumDeserializeStep(input, cursor, endCursor) {
22752
22763
  return parser148.extract(IfcReinforcingBarRoleEnumSearch, input, cursor, endCursor);
22753
22764
  }
@@ -22763,7 +22774,7 @@ var prefixSumAddressIfcReinforcingBarSurfaceEnum = new Uint32Array([0, 10, 17]);
22763
22774
  var slotMapIfcReinforcingBarSurfaceEnum = new Int32Array([1, 0]);
22764
22775
  var encodedDataIfcReinforcingBarSurfaceEnum = new TextEncoder().encode(".TEXTURED..PLAIN.");
22765
22776
  var IfcReinforcingBarSurfaceEnumSearch = new MinimalPerfectHash(gMapIfcReinforcingBarSurfaceEnum, prefixSumAddressIfcReinforcingBarSurfaceEnum, slotMapIfcReinforcingBarSurfaceEnum, encodedDataIfcReinforcingBarSurfaceEnum);
22766
- var parser149 = StepEnumParser.Instance;
22777
+ var parser149 = step_enum_parser_default.Instance;
22767
22778
  function IfcReinforcingBarSurfaceEnumDeserializeStep(input, cursor, endCursor) {
22768
22779
  return parser149.extract(IfcReinforcingBarSurfaceEnumSearch, input, cursor, endCursor);
22769
22780
  }
@@ -22787,7 +22798,7 @@ var prefixSumAddressIfcReinforcingBarTypeEnum = new Uint32Array([0, 10, 22, 29,
22787
22798
  var slotMapIfcReinforcingBarTypeEnum = new Int32Array([4, 9, 6, 0, 2, 7, 5, 1, 3, 8]);
22788
22799
  var encodedDataIfcReinforcingBarTypeEnum = new TextEncoder().encode(".PUNCHING..NOTDEFINED..SHEAR..ANCHORING..LIGATURE..STUD..RING..EDGE..MAIN..USERDEFINED.");
22789
22800
  var IfcReinforcingBarTypeEnumSearch = new MinimalPerfectHash(gMapIfcReinforcingBarTypeEnum, prefixSumAddressIfcReinforcingBarTypeEnum, slotMapIfcReinforcingBarTypeEnum, encodedDataIfcReinforcingBarTypeEnum);
22790
- var parser150 = StepEnumParser.Instance;
22801
+ var parser150 = step_enum_parser_default.Instance;
22791
22802
  function IfcReinforcingBarTypeEnumDeserializeStep(input, cursor, endCursor) {
22792
22803
  return parser150.extract(IfcReinforcingBarTypeEnumSearch, input, cursor, endCursor);
22793
22804
  }
@@ -22803,7 +22814,7 @@ var prefixSumAddressIfcReinforcingMeshTypeEnum = new Uint32Array([0, 13, 25]);
22803
22814
  var slotMapIfcReinforcingMeshTypeEnum = new Int32Array([0, 1]);
22804
22815
  var encodedDataIfcReinforcingMeshTypeEnum = new TextEncoder().encode(".USERDEFINED..NOTDEFINED.");
22805
22816
  var IfcReinforcingMeshTypeEnumSearch = new MinimalPerfectHash(gMapIfcReinforcingMeshTypeEnum, prefixSumAddressIfcReinforcingMeshTypeEnum, slotMapIfcReinforcingMeshTypeEnum, encodedDataIfcReinforcingMeshTypeEnum);
22806
- var parser151 = StepEnumParser.Instance;
22817
+ var parser151 = step_enum_parser_default.Instance;
22807
22818
  function IfcReinforcingMeshTypeEnumDeserializeStep(input, cursor, endCursor) {
22808
22819
  return parser151.extract(IfcReinforcingMeshTypeEnumSearch, input, cursor, endCursor);
22809
22820
  }
@@ -22840,7 +22851,7 @@ var prefixSumAddressIfcRoleEnum = new Uint32Array([0, 15, 26, 42, 63, 76, 96, 12
22840
22851
  var slotMapIfcRoleEnum = new Int32Array([8, 4, 12, 19, 22, 10, 20, 14, 7, 0, 11, 6, 1, 5, 16, 9, 15, 17, 3, 21, 18, 2, 13]);
22841
22852
  var encodedDataIfcRoleEnum = new TextEncoder().encode(".BUILDINGOWNER..ARCHITECT..PROJECTMANAGER..CONSTRUCTIONMANAGER..USERDEFINED..MECHANICALENGINEER..FIELDCONSTRUCTIONMANAGER..CIVILENGINEER..CLIENT..SUPPLIER..ELECTRICALENGINEER..COSTENGINEER..MANUFACTURER..STRUCTURALENGINEER..ENGINEER..BUILDINGOPERATOR..COMMISSIONINGENGINEER..OWNER..SUBCONTRACTOR..RESELLER..CONSULTANT..CONTRACTOR..FACILITIESMANAGER.");
22842
22853
  var IfcRoleEnumSearch = new MinimalPerfectHash(gMapIfcRoleEnum, prefixSumAddressIfcRoleEnum, slotMapIfcRoleEnum, encodedDataIfcRoleEnum);
22843
- var parser152 = StepEnumParser.Instance;
22854
+ var parser152 = step_enum_parser_default.Instance;
22844
22855
  function IfcRoleEnumDeserializeStep(input, cursor, endCursor) {
22845
22856
  return parser152.extract(IfcRoleEnumSearch, input, cursor, endCursor);
22846
22857
  }
@@ -22869,7 +22880,7 @@ var prefixSumAddressIfcRoofTypeEnum = new Uint32Array([0, 13, 23, 35, 46, 59, 70
22869
22880
  var slotMapIfcRoofTypeEnum = new Int32Array([13, 3, 2, 11, 7, 1, 5, 0, 6, 9, 14, 12, 8, 10, 4]);
22870
22881
  var encodedDataIfcRoofTypeEnum = new TextEncoder().encode(".USERDEFINED..HIP_ROOF..GABLE_ROOF..DOME_ROOF..BARREL_ROOF..SHED_ROOF..GAMBREL_ROOF..FLAT_ROOF..MANSARD_ROOF..BUTTERFLY_ROOF..NOTDEFINED..FREEFORM..RAINBOW_ROOF..PAVILION_ROOF..HIPPED_GABLE_ROOF.");
22871
22882
  var IfcRoofTypeEnumSearch = new MinimalPerfectHash(gMapIfcRoofTypeEnum, prefixSumAddressIfcRoofTypeEnum, slotMapIfcRoofTypeEnum, encodedDataIfcRoofTypeEnum);
22872
- var parser153 = StepEnumParser.Instance;
22883
+ var parser153 = step_enum_parser_default.Instance;
22873
22884
  function IfcRoofTypeEnumDeserializeStep(input, cursor, endCursor) {
22874
22885
  return parser153.extract(IfcRoofTypeEnumSearch, input, cursor, endCursor);
22875
22886
  }
@@ -22895,7 +22906,7 @@ var prefixSumAddressIfcSanitaryTerminalTypeEnum = new Uint32Array([0, 18, 27, 38
22895
22906
  var slotMapIfcSanitaryTerminalTypeEnum = new Int32Array([5, 2, 6, 9, 11, 10, 3, 1, 7, 4, 0, 8]);
22896
22907
  var encodedDataIfcSanitaryTerminalTypeEnum = new TextEncoder().encode(".SANITARYFOUNTAIN..CISTERN..TOILETPAN..WCSEAT..NOTDEFINED..USERDEFINED..SHOWER..BIDET..URINAL..SINK..BATH..WASHHANDBASIN.");
22897
22908
  var IfcSanitaryTerminalTypeEnumSearch = new MinimalPerfectHash(gMapIfcSanitaryTerminalTypeEnum, prefixSumAddressIfcSanitaryTerminalTypeEnum, slotMapIfcSanitaryTerminalTypeEnum, encodedDataIfcSanitaryTerminalTypeEnum);
22898
- var parser154 = StepEnumParser.Instance;
22909
+ var parser154 = step_enum_parser_default.Instance;
22899
22910
  function IfcSanitaryTerminalTypeEnumDeserializeStep(input, cursor, endCursor) {
22900
22911
  return parser154.extract(IfcSanitaryTerminalTypeEnumSearch, input, cursor, endCursor);
22901
22912
  }
@@ -22911,7 +22922,7 @@ var prefixSumAddressIfcSectionTypeEnum = new Uint32Array([0, 9, 18]);
22911
22922
  var slotMapIfcSectionTypeEnum = new Int32Array([1, 0]);
22912
22923
  var encodedDataIfcSectionTypeEnum = new TextEncoder().encode(".TAPERED..UNIFORM.");
22913
22924
  var IfcSectionTypeEnumSearch = new MinimalPerfectHash(gMapIfcSectionTypeEnum, prefixSumAddressIfcSectionTypeEnum, slotMapIfcSectionTypeEnum, encodedDataIfcSectionTypeEnum);
22914
- var parser155 = StepEnumParser.Instance;
22925
+ var parser155 = step_enum_parser_default.Instance;
22915
22926
  function IfcSectionTypeEnumDeserializeStep(input, cursor, endCursor) {
22916
22927
  return parser155.extract(IfcSectionTypeEnumSearch, input, cursor, endCursor);
22917
22928
  }
@@ -22951,7 +22962,7 @@ var prefixSumAddressIfcSensorTypeEnum = new Uint32Array([0, 19, 43, 56, 69, 87,
22951
22962
  var slotMapIfcSensorTypeEnum = new Int32Array([2, 11, 21, 20, 10, 5, 17, 4, 22, 9, 1, 14, 25, 7, 0, 8, 6, 13, 12, 3, 24, 18, 16, 19, 15, 23]);
22952
22963
  var encodedDataIfcSensorTypeEnum = new TextEncoder().encode(".CONDUCTANCESENSOR..IONCONCENTRATIONSENSOR..SOUNDSENSOR..SMOKESENSOR..IDENTIFIERSENSOR..FLOWSENSOR..PRESSURESENSOR..FIRESENSOR..TEMPERATURESENSOR..HUMIDITYSENSOR..CO2SENSOR..MOISTURESENSOR..NOTDEFINED..GASSENSOR..COSENSOR..HEATSENSOR..FROSTSENSOR..LIGHTSENSOR..LEVELSENSOR..CONTACTSENSOR..USERDEFINED..RADIATIONSENSOR..PHSENSOR..RADIOACTIVITYSENSOR..MOVEMENTSENSOR..WINDSENSOR.");
22953
22964
  var IfcSensorTypeEnumSearch = new MinimalPerfectHash(gMapIfcSensorTypeEnum, prefixSumAddressIfcSensorTypeEnum, slotMapIfcSensorTypeEnum, encodedDataIfcSensorTypeEnum);
22954
- var parser156 = StepEnumParser.Instance;
22965
+ var parser156 = step_enum_parser_default.Instance;
22955
22966
  function IfcSensorTypeEnumDeserializeStep(input, cursor, endCursor) {
22956
22967
  return parser156.extract(IfcSensorTypeEnumSearch, input, cursor, endCursor);
22957
22968
  }
@@ -22971,7 +22982,7 @@ var prefixSumAddressIfcSequenceEnum = new Uint32Array([0, 13, 28, 42, 54, 67, 81
22971
22982
  var slotMapIfcSequenceEnum = new Int32Array([0, 3, 1, 5, 4, 2]);
22972
22983
  var encodedDataIfcSequenceEnum = new TextEncoder().encode(".START_START..FINISH_FINISH..START_FINISH..NOTDEFINED..USERDEFINED..FINISH_START.");
22973
22984
  var IfcSequenceEnumSearch = new MinimalPerfectHash(gMapIfcSequenceEnum, prefixSumAddressIfcSequenceEnum, slotMapIfcSequenceEnum, encodedDataIfcSequenceEnum);
22974
- var parser157 = StepEnumParser.Instance;
22985
+ var parser157 = step_enum_parser_default.Instance;
22975
22986
  function IfcSequenceEnumDeserializeStep(input, cursor, endCursor) {
22976
22987
  return parser157.extract(IfcSequenceEnumSearch, input, cursor, endCursor);
22977
22988
  }
@@ -22990,7 +23001,7 @@ var prefixSumAddressIfcShadingDeviceTypeEnum = new Uint32Array([0, 13, 22, 34, 4
22990
23001
  var slotMapIfcShadingDeviceTypeEnum = new Int32Array([3, 1, 4, 0, 2]);
22991
23002
  var encodedDataIfcShadingDeviceTypeEnum = new TextEncoder().encode(".USERDEFINED..SHUTTER..NOTDEFINED..JALOUSIE..AWNING.");
22992
23003
  var IfcShadingDeviceTypeEnumSearch = new MinimalPerfectHash(gMapIfcShadingDeviceTypeEnum, prefixSumAddressIfcShadingDeviceTypeEnum, slotMapIfcShadingDeviceTypeEnum, encodedDataIfcShadingDeviceTypeEnum);
22993
- var parser158 = StepEnumParser.Instance;
23004
+ var parser158 = step_enum_parser_default.Instance;
22994
23005
  function IfcShadingDeviceTypeEnumDeserializeStep(input, cursor, endCursor) {
22995
23006
  return parser158.extract(IfcShadingDeviceTypeEnumSearch, input, cursor, endCursor);
22996
23007
  }
@@ -23016,7 +23027,7 @@ var prefixSumAddressIfcSimplePropertyTemplateTypeEnum = new Uint32Array([0, 14,
23016
23027
  var slotMapIfcSimplePropertyTemplateTypeEnum = new Int32Array([4, 8, 7, 11, 3, 10, 2, 0, 9, 5, 6, 1]);
23017
23028
  var encodedDataIfcSimplePropertyTemplateTypeEnum = new TextEncoder().encode(".P_TABLEVALUE..Q_VOLUME..Q_AREA..Q_TIME..P_LISTVALUE..Q_WEIGHT..P_BOUNDEDVALUE..P_SINGLEVALUE..Q_COUNT..P_REFERENCEVALUE..Q_LENGTH..P_ENUMERATEDVALUE.");
23018
23029
  var IfcSimplePropertyTemplateTypeEnumSearch = new MinimalPerfectHash(gMapIfcSimplePropertyTemplateTypeEnum, prefixSumAddressIfcSimplePropertyTemplateTypeEnum, slotMapIfcSimplePropertyTemplateTypeEnum, encodedDataIfcSimplePropertyTemplateTypeEnum);
23019
- var parser159 = StepEnumParser.Instance;
23030
+ var parser159 = step_enum_parser_default.Instance;
23020
23031
  function IfcSimplePropertyTemplateTypeEnumDeserializeStep(input, cursor, endCursor) {
23021
23032
  return parser159.extract(IfcSimplePropertyTemplateTypeEnumSearch, input, cursor, endCursor);
23022
23033
  }
@@ -23046,7 +23057,7 @@ var prefixSumAddressIfcSIPrefix = new Uint32Array([0, 6, 12, 18, 24, 29, 36, 42,
23046
23057
  var slotMapIfcSIPrefix = new Int32Array([1, 5, 12, 13, 0, 10, 15, 7, 9, 11, 14, 4, 6, 3, 8, 2]);
23047
23058
  var encodedDataIfcSIPrefix = new TextEncoder().encode(".PETA..KILO..NANO..PICO..EXA..MILLI..ATTO..DECA..CENTI..MICRO..FEMTO..MEGA..HECTO..GIGA..DECI..TERA.");
23048
23059
  var IfcSIPrefixSearch = new MinimalPerfectHash(gMapIfcSIPrefix, prefixSumAddressIfcSIPrefix, slotMapIfcSIPrefix, encodedDataIfcSIPrefix);
23049
- var parser160 = StepEnumParser.Instance;
23060
+ var parser160 = step_enum_parser_default.Instance;
23050
23061
  function IfcSIPrefixDeserializeStep(input, cursor, endCursor) {
23051
23062
  return parser160.extract(IfcSIPrefixSearch, input, cursor, endCursor);
23052
23063
  }
@@ -23090,7 +23101,7 @@ var prefixSumAddressIfcSIUnitName = new Uint32Array([0, 9, 16, 27, 34, 42, 51, 5
23090
23101
  var slotMapIfcSIUnitName = new Int32Array([22, 10, 1, 6, 21, 23, 17, 11, 16, 19, 14, 3, 8, 25, 12, 13, 18, 4, 24, 28, 26, 27, 9, 2, 15, 29, 20, 5, 0, 7]);
23091
23102
  var encodedDataIfcSIUnitName = new TextEncoder().encode(".SIEMENS..HERTZ..BECQUEREL..FARAD..SECOND..SIEVERT..NEWTON..JOULE..MOLE..PASCAL..LUX..COULOMB..GRAY..STERADIAN..KELVIN..LUMEN..OHM..CUBIC_METRE..SQUARE_METRE..WATT..TESLA..VOLT..HENRY..CANDELA..METRE..WEBER..RADIAN..DEGREE_CELSIUS..AMPERE..GRAM.");
23092
23103
  var IfcSIUnitNameSearch = new MinimalPerfectHash(gMapIfcSIUnitName, prefixSumAddressIfcSIUnitName, slotMapIfcSIUnitName, encodedDataIfcSIUnitName);
23093
- var parser161 = StepEnumParser.Instance;
23104
+ var parser161 = step_enum_parser_default.Instance;
23094
23105
  function IfcSIUnitNameDeserializeStep(input, cursor, endCursor) {
23095
23106
  return parser161.extract(IfcSIUnitNameSearch, input, cursor, endCursor);
23096
23107
  }
@@ -23110,7 +23121,7 @@ var prefixSumAddressIfcSlabTypeEnum = new Uint32Array([0, 7, 13, 26, 38, 47, 57]
23110
23121
  var slotMapIfcSlabTypeEnum = new Int32Array([0, 1, 4, 5, 2, 3]);
23111
23122
  var encodedDataIfcSlabTypeEnum = new TextEncoder().encode(".FLOOR..ROOF..USERDEFINED..NOTDEFINED..LANDING..BASESLAB.");
23112
23123
  var IfcSlabTypeEnumSearch = new MinimalPerfectHash(gMapIfcSlabTypeEnum, prefixSumAddressIfcSlabTypeEnum, slotMapIfcSlabTypeEnum, encodedDataIfcSlabTypeEnum);
23113
- var parser162 = StepEnumParser.Instance;
23124
+ var parser162 = step_enum_parser_default.Instance;
23114
23125
  function IfcSlabTypeEnumDeserializeStep(input, cursor, endCursor) {
23115
23126
  return parser162.extract(IfcSlabTypeEnumSearch, input, cursor, endCursor);
23116
23127
  }
@@ -23128,7 +23139,7 @@ var prefixSumAddressIfcSolarDeviceTypeEnum = new Uint32Array([0, 13, 25, 37, 53]
23128
23139
  var slotMapIfcSolarDeviceTypeEnum = new Int32Array([2, 1, 3, 0]);
23129
23140
  var encodedDataIfcSolarDeviceTypeEnum = new TextEncoder().encode(".USERDEFINED..SOLARPANEL..NOTDEFINED..SOLARCOLLECTOR.");
23130
23141
  var IfcSolarDeviceTypeEnumSearch = new MinimalPerfectHash(gMapIfcSolarDeviceTypeEnum, prefixSumAddressIfcSolarDeviceTypeEnum, slotMapIfcSolarDeviceTypeEnum, encodedDataIfcSolarDeviceTypeEnum);
23131
- var parser163 = StepEnumParser.Instance;
23142
+ var parser163 = step_enum_parser_default.Instance;
23132
23143
  function IfcSolarDeviceTypeEnumDeserializeStep(input, cursor, endCursor) {
23133
23144
  return parser163.extract(IfcSolarDeviceTypeEnumSearch, input, cursor, endCursor);
23134
23145
  }
@@ -23146,7 +23157,7 @@ var prefixSumAddressIfcSpaceHeaterTypeEnum = new Uint32Array([0, 10, 22, 33, 46]
23146
23157
  var slotMapIfcSpaceHeaterTypeEnum = new Int32Array([1, 3, 0, 2]);
23147
23158
  var encodedDataIfcSpaceHeaterTypeEnum = new TextEncoder().encode(".RADIATOR..NOTDEFINED..CONVECTOR..USERDEFINED.");
23148
23159
  var IfcSpaceHeaterTypeEnumSearch = new MinimalPerfectHash(gMapIfcSpaceHeaterTypeEnum, prefixSumAddressIfcSpaceHeaterTypeEnum, slotMapIfcSpaceHeaterTypeEnum, encodedDataIfcSpaceHeaterTypeEnum);
23149
- var parser164 = StepEnumParser.Instance;
23160
+ var parser164 = step_enum_parser_default.Instance;
23150
23161
  function IfcSpaceHeaterTypeEnumDeserializeStep(input, cursor, endCursor) {
23151
23162
  return parser164.extract(IfcSpaceHeaterTypeEnumSearch, input, cursor, endCursor);
23152
23163
  }
@@ -23167,7 +23178,7 @@ var prefixSumAddressIfcSpaceTypeEnum = new Uint32Array([0, 10, 17, 29, 39, 52, 6
23167
23178
  var slotMapIfcSpaceTypeEnum = new Int32Array([4, 0, 6, 3, 5, 1, 2]);
23168
23179
  var encodedDataIfcSpaceTypeEnum = new TextEncoder().encode(".EXTERNAL..SPACE..NOTDEFINED..INTERNAL..USERDEFINED..PARKING..GFA.");
23169
23180
  var IfcSpaceTypeEnumSearch = new MinimalPerfectHash(gMapIfcSpaceTypeEnum, prefixSumAddressIfcSpaceTypeEnum, slotMapIfcSpaceTypeEnum, encodedDataIfcSpaceTypeEnum);
23170
- var parser165 = StepEnumParser.Instance;
23181
+ var parser165 = step_enum_parser_default.Instance;
23171
23182
  function IfcSpaceTypeEnumDeserializeStep(input, cursor, endCursor) {
23172
23183
  return parser165.extract(IfcSpaceTypeEnumSearch, input, cursor, endCursor);
23173
23184
  }
@@ -23191,7 +23202,7 @@ var prefixSumAddressIfcSpatialZoneTypeEnum = new Uint32Array([0, 13, 25, 34, 46,
23191
23202
  var slotMapIfcSpatialZoneTypeEnum = new Int32Array([8, 9, 5, 1, 7, 2, 3, 4, 6, 0]);
23192
23203
  var encodedDataIfcSpatialZoneTypeEnum = new TextEncoder().encode(".USERDEFINED..NOTDEFINED..THERMAL..FIRESAFETY..VENTILATION..LIGHTING..OCCUPANCY..SECURITY..TRANSPORT..CONSTRUCTION.");
23193
23204
  var IfcSpatialZoneTypeEnumSearch = new MinimalPerfectHash(gMapIfcSpatialZoneTypeEnum, prefixSumAddressIfcSpatialZoneTypeEnum, slotMapIfcSpatialZoneTypeEnum, encodedDataIfcSpatialZoneTypeEnum);
23194
- var parser166 = StepEnumParser.Instance;
23205
+ var parser166 = step_enum_parser_default.Instance;
23195
23206
  function IfcSpatialZoneTypeEnumDeserializeStep(input, cursor, endCursor) {
23196
23207
  return parser166.extract(IfcSpatialZoneTypeEnumSearch, input, cursor, endCursor);
23197
23208
  }
@@ -23210,7 +23221,7 @@ var prefixSumAddressIfcStackTerminalTypeEnum = new Uint32Array([0, 12, 25, 35, 4
23210
23221
  var slotMapIfcStackTerminalTypeEnum = new Int32Array([4, 3, 0, 1, 2]);
23211
23222
  var encodedDataIfcStackTerminalTypeEnum = new TextEncoder().encode(".NOTDEFINED..USERDEFINED..BIRDCAGE..COWL..RAINWATERHOPPER.");
23212
23223
  var IfcStackTerminalTypeEnumSearch = new MinimalPerfectHash(gMapIfcStackTerminalTypeEnum, prefixSumAddressIfcStackTerminalTypeEnum, slotMapIfcStackTerminalTypeEnum, encodedDataIfcStackTerminalTypeEnum);
23213
- var parser167 = StepEnumParser.Instance;
23224
+ var parser167 = step_enum_parser_default.Instance;
23214
23225
  function IfcStackTerminalTypeEnumDeserializeStep(input, cursor, endCursor) {
23215
23226
  return parser167.extract(IfcStackTerminalTypeEnumSearch, input, cursor, endCursor);
23216
23227
  }
@@ -23231,7 +23242,7 @@ var prefixSumAddressIfcStairFlightTypeEnum = new Uint32Array([0, 13, 21, 29, 39,
23231
23242
  var slotMapIfcStairFlightTypeEnum = new Int32Array([5, 2, 1, 4, 3, 6, 0]);
23232
23243
  var encodedDataIfcStairFlightTypeEnum = new TextEncoder().encode(".USERDEFINED..SPIRAL..WINDER..FREEFORM..CURVED..NOTDEFINED..STRAIGHT.");
23233
23244
  var IfcStairFlightTypeEnumSearch = new MinimalPerfectHash(gMapIfcStairFlightTypeEnum, prefixSumAddressIfcStairFlightTypeEnum, slotMapIfcStairFlightTypeEnum, encodedDataIfcStairFlightTypeEnum);
23234
- var parser168 = StepEnumParser.Instance;
23245
+ var parser168 = step_enum_parser_default.Instance;
23235
23246
  function IfcStairFlightTypeEnumDeserializeStep(input, cursor, endCursor) {
23236
23247
  return parser168.extract(IfcStairFlightTypeEnumSearch, input, cursor, endCursor);
23237
23248
  }
@@ -23261,7 +23272,7 @@ var prefixSumAddressIfcStairTypeEnum = new Uint32Array([0, 12, 30, 51, 73, 93, 1
23261
23272
  var slotMapIfcStairTypeEnum = new Int32Array([15, 12, 11, 13, 3, 4, 2, 7, 10, 6, 5, 0, 1, 8, 9, 14]);
23262
23273
  var encodedDataIfcStairTypeEnum = new TextEncoder().encode(".NOTDEFINED..CURVED_RUN_STAIR..DOUBLE_RETURN_STAIR..TWO_CURVED_RUN_STAIR..QUARTER_TURN_STAIR..HALF_WINDING_STAIR..QUARTER_WINDING_STAIR..TWO_QUARTER_TURN_STAIR..SPIRAL_STAIR..TWO_QUARTER_WINDING_STAIR..HALF_TURN_STAIR..STRAIGHT_RUN_STAIR..TWO_STRAIGHT_RUN_STAIR..THREE_QUARTER_WINDING_STAIR..THREE_QUARTER_TURN_STAIR..USERDEFINED.");
23263
23274
  var IfcStairTypeEnumSearch = new MinimalPerfectHash(gMapIfcStairTypeEnum, prefixSumAddressIfcStairTypeEnum, slotMapIfcStairTypeEnum, encodedDataIfcStairTypeEnum);
23264
- var parser169 = StepEnumParser.Instance;
23275
+ var parser169 = step_enum_parser_default.Instance;
23265
23276
  function IfcStairTypeEnumDeserializeStep(input, cursor, endCursor) {
23266
23277
  return parser169.extract(IfcStairTypeEnumSearch, input, cursor, endCursor);
23267
23278
  }
@@ -23280,7 +23291,7 @@ var prefixSumAddressIfcStateEnum = new Uint32Array([0, 8, 25, 36, 46, 62]);
23280
23291
  var slotMapIfcStateEnum = new Int32Array([2, 3, 0, 1, 4]);
23281
23292
  var encodedDataIfcStateEnum = new TextEncoder().encode(".LOCKED..READWRITELOCKED..READWRITE..READONLY..READONLYLOCKED.");
23282
23293
  var IfcStateEnumSearch = new MinimalPerfectHash(gMapIfcStateEnum, prefixSumAddressIfcStateEnum, slotMapIfcStateEnum, encodedDataIfcStateEnum);
23283
- var parser170 = StepEnumParser.Instance;
23294
+ var parser170 = step_enum_parser_default.Instance;
23284
23295
  function IfcStateEnumDeserializeStep(input, cursor, endCursor) {
23285
23296
  return parser170.extract(IfcStateEnumSearch, input, cursor, endCursor);
23286
23297
  }
@@ -23303,7 +23314,7 @@ var prefixSumAddressIfcStructuralCurveActivityTypeEnum = new Uint32Array([0, 10,
23303
23314
  var slotMapIfcStructuralCurveActivityTypeEnum = new Int32Array([5, 6, 1, 2, 0, 3, 4, 8, 7]);
23304
23315
  var encodedDataIfcStructuralCurveActivityTypeEnum = new TextEncoder().encode(".PARABOLA..DISCRETE..LINEAR..POLYGONAL..CONST..EQUIDISTANT..SINUS..NOTDEFINED..USERDEFINED.");
23305
23316
  var IfcStructuralCurveActivityTypeEnumSearch = new MinimalPerfectHash(gMapIfcStructuralCurveActivityTypeEnum, prefixSumAddressIfcStructuralCurveActivityTypeEnum, slotMapIfcStructuralCurveActivityTypeEnum, encodedDataIfcStructuralCurveActivityTypeEnum);
23306
- var parser171 = StepEnumParser.Instance;
23317
+ var parser171 = step_enum_parser_default.Instance;
23307
23318
  function IfcStructuralCurveActivityTypeEnumDeserializeStep(input, cursor, endCursor) {
23308
23319
  return parser171.extract(IfcStructuralCurveActivityTypeEnumSearch, input, cursor, endCursor);
23309
23320
  }
@@ -23324,7 +23335,7 @@ var prefixSumAddressIfcStructuralCurveMemberTypeEnum = new Uint32Array([0, 13, 2
23324
23335
  var slotMapIfcStructuralCurveMemberTypeEnum = new Int32Array([5, 6, 2, 0, 4, 1, 3]);
23325
23336
  var encodedDataIfcStructuralCurveMemberTypeEnum = new TextEncoder().encode(".USERDEFINED..NOTDEFINED..CABLE..RIGID_JOINED_MEMBER..COMPRESSION_MEMBER..PIN_JOINED_MEMBER..TENSION_MEMBER.");
23326
23337
  var IfcStructuralCurveMemberTypeEnumSearch = new MinimalPerfectHash(gMapIfcStructuralCurveMemberTypeEnum, prefixSumAddressIfcStructuralCurveMemberTypeEnum, slotMapIfcStructuralCurveMemberTypeEnum, encodedDataIfcStructuralCurveMemberTypeEnum);
23327
- var parser172 = StepEnumParser.Instance;
23338
+ var parser172 = step_enum_parser_default.Instance;
23328
23339
  function IfcStructuralCurveMemberTypeEnumDeserializeStep(input, cursor, endCursor) {
23329
23340
  return parser172.extract(IfcStructuralCurveMemberTypeEnumSearch, input, cursor, endCursor);
23330
23341
  }
@@ -23344,7 +23355,7 @@ var prefixSumAddressIfcStructuralSurfaceActivityTypeEnum = new Uint32Array([0, 1
23344
23355
  var slotMapIfcStructuralSurfaceActivityTypeEnum = new Int32Array([4, 2, 5, 0, 1, 3]);
23345
23356
  var encodedDataIfcStructuralSurfaceActivityTypeEnum = new TextEncoder().encode(".USERDEFINED..DISCRETE..NOTDEFINED..CONST..BILINEAR..ISOCONTOUR.");
23346
23357
  var IfcStructuralSurfaceActivityTypeEnumSearch = new MinimalPerfectHash(gMapIfcStructuralSurfaceActivityTypeEnum, prefixSumAddressIfcStructuralSurfaceActivityTypeEnum, slotMapIfcStructuralSurfaceActivityTypeEnum, encodedDataIfcStructuralSurfaceActivityTypeEnum);
23347
- var parser173 = StepEnumParser.Instance;
23358
+ var parser173 = step_enum_parser_default.Instance;
23348
23359
  function IfcStructuralSurfaceActivityTypeEnumDeserializeStep(input, cursor, endCursor) {
23349
23360
  return parser173.extract(IfcStructuralSurfaceActivityTypeEnumSearch, input, cursor, endCursor);
23350
23361
  }
@@ -23363,7 +23374,7 @@ var prefixSumAddressIfcStructuralSurfaceMemberTypeEnum = new Uint32Array([0, 12,
23363
23374
  var slotMapIfcStructuralSurfaceMemberTypeEnum = new Int32Array([4, 1, 2, 0, 3]);
23364
23375
  var encodedDataIfcStructuralSurfaceMemberTypeEnum = new TextEncoder().encode(".NOTDEFINED..MEMBRANE_ELEMENT..SHELL..BENDING_ELEMENT..USERDEFINED.");
23365
23376
  var IfcStructuralSurfaceMemberTypeEnumSearch = new MinimalPerfectHash(gMapIfcStructuralSurfaceMemberTypeEnum, prefixSumAddressIfcStructuralSurfaceMemberTypeEnum, slotMapIfcStructuralSurfaceMemberTypeEnum, encodedDataIfcStructuralSurfaceMemberTypeEnum);
23366
- var parser174 = StepEnumParser.Instance;
23377
+ var parser174 = step_enum_parser_default.Instance;
23367
23378
  function IfcStructuralSurfaceMemberTypeEnumDeserializeStep(input, cursor, endCursor) {
23368
23379
  return parser174.extract(IfcStructuralSurfaceMemberTypeEnumSearch, input, cursor, endCursor);
23369
23380
  }
@@ -23381,7 +23392,7 @@ var prefixSumAddressIfcSubContractResourceTypeEnum = new Uint32Array([0, 12, 18,
23381
23392
  var slotMapIfcSubContractResourceTypeEnum = new Int32Array([3, 1, 0, 2]);
23382
23393
  var encodedDataIfcSubContractResourceTypeEnum = new TextEncoder().encode(".NOTDEFINED..WORK..PURCHASE..USERDEFINED.");
23383
23394
  var IfcSubContractResourceTypeEnumSearch = new MinimalPerfectHash(gMapIfcSubContractResourceTypeEnum, prefixSumAddressIfcSubContractResourceTypeEnum, slotMapIfcSubContractResourceTypeEnum, encodedDataIfcSubContractResourceTypeEnum);
23384
- var parser175 = StepEnumParser.Instance;
23395
+ var parser175 = step_enum_parser_default.Instance;
23385
23396
  function IfcSubContractResourceTypeEnumDeserializeStep(input, cursor, endCursor) {
23386
23397
  return parser175.extract(IfcSubContractResourceTypeEnumSearch, input, cursor, endCursor);
23387
23398
  }
@@ -23400,7 +23411,7 @@ var prefixSumAddressIfcSurfaceFeatureTypeEnum = new Uint32Array([0, 11, 24, 30,
23400
23411
  var slotMapIfcSurfaceFeatureTypeEnum = new Int32Array([2, 3, 0, 1, 4]);
23401
23412
  var encodedDataIfcSurfaceFeatureTypeEnum = new TextEncoder().encode(".TREATMENT..USERDEFINED..MARK..TAG..NOTDEFINED.");
23402
23413
  var IfcSurfaceFeatureTypeEnumSearch = new MinimalPerfectHash(gMapIfcSurfaceFeatureTypeEnum, prefixSumAddressIfcSurfaceFeatureTypeEnum, slotMapIfcSurfaceFeatureTypeEnum, encodedDataIfcSurfaceFeatureTypeEnum);
23403
- var parser176 = StepEnumParser.Instance;
23414
+ var parser176 = step_enum_parser_default.Instance;
23404
23415
  function IfcSurfaceFeatureTypeEnumDeserializeStep(input, cursor, endCursor) {
23405
23416
  return parser176.extract(IfcSurfaceFeatureTypeEnumSearch, input, cursor, endCursor);
23406
23417
  }
@@ -23417,7 +23428,7 @@ var prefixSumAddressIfcSurfaceSide = new Uint32Array([0, 6, 16, 26]);
23417
23428
  var slotMapIfcSurfaceSide = new Int32Array([2, 1, 0]);
23418
23429
  var encodedDataIfcSurfaceSide = new TextEncoder().encode(".BOTH..NEGATIVE..POSITIVE.");
23419
23430
  var IfcSurfaceSideSearch = new MinimalPerfectHash(gMapIfcSurfaceSide, prefixSumAddressIfcSurfaceSide, slotMapIfcSurfaceSide, encodedDataIfcSurfaceSide);
23420
- var parser177 = StepEnumParser.Instance;
23431
+ var parser177 = step_enum_parser_default.Instance;
23421
23432
  function IfcSurfaceSideDeserializeStep(input, cursor, endCursor) {
23422
23433
  return parser177.extract(IfcSurfaceSideSearch, input, cursor, endCursor);
23423
23434
  }
@@ -23442,7 +23453,7 @@ var prefixSumAddressIfcSwitchingDeviceTypeEnum = new Uint32Array([0, 9, 24, 36,
23442
23453
  var slotMapIfcSwitchingDeviceTypeEnum = new Int32Array([6, 2, 10, 0, 8, 1, 4, 3, 5, 7, 9]);
23443
23454
  var encodedDataIfcSwitchingDeviceTypeEnum = new TextEncoder().encode(".STARTER..EMERGENCYSTOP..NOTDEFINED..CONTACTOR..TOGGLESWITCH..DIMMERSWITCH..MOMENTARYSWITCH..KEYPAD..SELECTORSWITCH..SWITCHDISCONNECTOR..USERDEFINED.");
23444
23455
  var IfcSwitchingDeviceTypeEnumSearch = new MinimalPerfectHash(gMapIfcSwitchingDeviceTypeEnum, prefixSumAddressIfcSwitchingDeviceTypeEnum, slotMapIfcSwitchingDeviceTypeEnum, encodedDataIfcSwitchingDeviceTypeEnum);
23445
- var parser178 = StepEnumParser.Instance;
23456
+ var parser178 = step_enum_parser_default.Instance;
23446
23457
  function IfcSwitchingDeviceTypeEnumDeserializeStep(input, cursor, endCursor) {
23447
23458
  return parser178.extract(IfcSwitchingDeviceTypeEnumSearch, input, cursor, endCursor);
23448
23459
  }
@@ -23460,7 +23471,7 @@ var prefixSumAddressIfcSystemFurnitureElementTypeEnum = new Uint32Array([0, 7, 2
23460
23471
  var slotMapIfcSystemFurnitureElementTypeEnum = new Int32Array([0, 2, 1, 3]);
23461
23472
  var encodedDataIfcSystemFurnitureElementTypeEnum = new TextEncoder().encode(".PANEL..USERDEFINED..WORKSURFACE..NOTDEFINED.");
23462
23473
  var IfcSystemFurnitureElementTypeEnumSearch = new MinimalPerfectHash(gMapIfcSystemFurnitureElementTypeEnum, prefixSumAddressIfcSystemFurnitureElementTypeEnum, slotMapIfcSystemFurnitureElementTypeEnum, encodedDataIfcSystemFurnitureElementTypeEnum);
23463
- var parser179 = StepEnumParser.Instance;
23474
+ var parser179 = step_enum_parser_default.Instance;
23464
23475
  function IfcSystemFurnitureElementTypeEnumDeserializeStep(input, cursor, endCursor) {
23465
23476
  return parser179.extract(IfcSystemFurnitureElementTypeEnumSearch, input, cursor, endCursor);
23466
23477
  }
@@ -23483,7 +23494,7 @@ var prefixSumAddressIfcTankTypeEnum = new Uint32Array([0, 18, 33, 40, 51, 67, 79
23483
23494
  var slotMapIfcTankTypeEnum = new Int32Array([3, 1, 0, 2, 4, 8, 6, 5, 7]);
23484
23495
  var encodedDataIfcTankTypeEnum = new TextEncoder().encode(".FEEDANDEXPANSION..BREAKPRESSURE..BASIN..EXPANSION..PRESSUREVESSEL..NOTDEFINED..VESSEL..STORAGE..USERDEFINED.");
23485
23496
  var IfcTankTypeEnumSearch = new MinimalPerfectHash(gMapIfcTankTypeEnum, prefixSumAddressIfcTankTypeEnum, slotMapIfcTankTypeEnum, encodedDataIfcTankTypeEnum);
23486
- var parser180 = StepEnumParser.Instance;
23497
+ var parser180 = step_enum_parser_default.Instance;
23487
23498
  function IfcTankTypeEnumDeserializeStep(input, cursor, endCursor) {
23488
23499
  return parser180.extract(IfcTankTypeEnumSearch, input, cursor, endCursor);
23489
23500
  }
@@ -23500,7 +23511,7 @@ var prefixSumAddressIfcTaskDurationEnum = new Uint32Array([0, 13, 23, 35]);
23500
23511
  var slotMapIfcTaskDurationEnum = new Int32Array([0, 1, 2]);
23501
23512
  var encodedDataIfcTaskDurationEnum = new TextEncoder().encode(".ELAPSEDTIME..WORKTIME..NOTDEFINED.");
23502
23513
  var IfcTaskDurationEnumSearch = new MinimalPerfectHash(gMapIfcTaskDurationEnum, prefixSumAddressIfcTaskDurationEnum, slotMapIfcTaskDurationEnum, encodedDataIfcTaskDurationEnum);
23503
- var parser181 = StepEnumParser.Instance;
23514
+ var parser181 = step_enum_parser_default.Instance;
23504
23515
  function IfcTaskDurationEnumDeserializeStep(input, cursor, endCursor) {
23505
23516
  return parser181.extract(IfcTaskDurationEnumSearch, input, cursor, endCursor);
23506
23517
  }
@@ -23528,7 +23539,7 @@ var prefixSumAddressIfcTaskTypeEnum = new Uint32Array([0, 14, 25, 35, 47, 60, 72
23528
23539
  var slotMapIfcTaskTypeEnum = new Int32Array([1, 3, 6, 11, 12, 2, 13, 0, 10, 5, 8, 4, 9, 7]);
23529
23540
  var encodedDataIfcTaskTypeEnum = new TextEncoder().encode(".CONSTRUCTION..DISMANTLE..LOGISTIC..RENOVATION..USERDEFINED..DEMOLITION..NOTDEFINED..ATTENDANCE..REMOVAL..INSTALLATION..MOVE..DISPOSAL..OPERATION..MAINTENANCE.");
23530
23541
  var IfcTaskTypeEnumSearch = new MinimalPerfectHash(gMapIfcTaskTypeEnum, prefixSumAddressIfcTaskTypeEnum, slotMapIfcTaskTypeEnum, encodedDataIfcTaskTypeEnum);
23531
- var parser182 = StepEnumParser.Instance;
23542
+ var parser182 = step_enum_parser_default.Instance;
23532
23543
  function IfcTaskTypeEnumDeserializeStep(input, cursor, endCursor) {
23533
23544
  return parser182.extract(IfcTaskTypeEnumSearch, input, cursor, endCursor);
23534
23545
  }
@@ -23547,7 +23558,7 @@ var prefixSumAddressIfcTendonAnchorTypeEnum = new Uint32Array([0, 13, 29, 40, 52
23547
23558
  var slotMapIfcTendonAnchorTypeEnum = new Int32Array([3, 2, 1, 4, 0]);
23548
23559
  var encodedDataIfcTendonAnchorTypeEnum = new TextEncoder().encode(".USERDEFINED..TENSIONING_END..FIXED_END..NOTDEFINED..COUPLER.");
23549
23560
  var IfcTendonAnchorTypeEnumSearch = new MinimalPerfectHash(gMapIfcTendonAnchorTypeEnum, prefixSumAddressIfcTendonAnchorTypeEnum, slotMapIfcTendonAnchorTypeEnum, encodedDataIfcTendonAnchorTypeEnum);
23550
- var parser183 = StepEnumParser.Instance;
23561
+ var parser183 = step_enum_parser_default.Instance;
23551
23562
  function IfcTendonAnchorTypeEnumDeserializeStep(input, cursor, endCursor) {
23552
23563
  return parser183.extract(IfcTendonAnchorTypeEnumSearch, input, cursor, endCursor);
23553
23564
  }
@@ -23567,7 +23578,7 @@ var prefixSumAddressIfcTendonTypeEnum = new Uint32Array([0, 13, 19, 27, 32, 40,
23567
23578
  var slotMapIfcTendonTypeEnum = new Int32Array([4, 3, 2, 0, 1, 5]);
23568
23579
  var encodedDataIfcTendonTypeEnum = new TextEncoder().encode(".USERDEFINED..WIRE..STRAND..BAR..COATED..NOTDEFINED.");
23569
23580
  var IfcTendonTypeEnumSearch = new MinimalPerfectHash(gMapIfcTendonTypeEnum, prefixSumAddressIfcTendonTypeEnum, slotMapIfcTendonTypeEnum, encodedDataIfcTendonTypeEnum);
23570
- var parser184 = StepEnumParser.Instance;
23581
+ var parser184 = step_enum_parser_default.Instance;
23571
23582
  function IfcTendonTypeEnumDeserializeStep(input, cursor, endCursor) {
23572
23583
  return parser184.extract(IfcTendonTypeEnumSearch, input, cursor, endCursor);
23573
23584
  }
@@ -23585,7 +23596,7 @@ var prefixSumAddressIfcTextPath = new Uint32Array([0, 4, 11, 17, 23]);
23585
23596
  var slotMapIfcTextPath = new Int32Array([2, 1, 3, 0]);
23586
23597
  var encodedDataIfcTextPath = new TextEncoder().encode(".UP..RIGHT..DOWN..LEFT.");
23587
23598
  var IfcTextPathSearch = new MinimalPerfectHash(gMapIfcTextPath, prefixSumAddressIfcTextPath, slotMapIfcTextPath, encodedDataIfcTextPath);
23588
- var parser185 = StepEnumParser.Instance;
23599
+ var parser185 = step_enum_parser_default.Instance;
23589
23600
  function IfcTextPathDeserializeStep(input, cursor, endCursor) {
23590
23601
  return parser185.extract(IfcTextPathSearch, input, cursor, endCursor);
23591
23602
  }
@@ -23606,7 +23617,7 @@ var prefixSumAddressIfcTimeSeriesDataTypeEnum = new Uint32Array([0, 19, 29, 41,
23606
23617
  var slotMapIfcTimeSeriesDataTypeEnum = new Int32Array([4, 1, 6, 3, 0, 2, 5]);
23607
23618
  var encodedDataIfcTimeSeriesDataTypeEnum = new TextEncoder().encode(".PIECEWISECONSTANT..DISCRETE..NOTDEFINED..PIECEWISEBINARY..CONTINUOUS..DISCRETEBINARY..PIECEWISECONTINUOUS.");
23608
23619
  var IfcTimeSeriesDataTypeEnumSearch = new MinimalPerfectHash(gMapIfcTimeSeriesDataTypeEnum, prefixSumAddressIfcTimeSeriesDataTypeEnum, slotMapIfcTimeSeriesDataTypeEnum, encodedDataIfcTimeSeriesDataTypeEnum);
23609
- var parser186 = StepEnumParser.Instance;
23620
+ var parser186 = step_enum_parser_default.Instance;
23610
23621
  function IfcTimeSeriesDataTypeEnumDeserializeStep(input, cursor, endCursor) {
23611
23622
  return parser186.extract(IfcTimeSeriesDataTypeEnumSearch, input, cursor, endCursor);
23612
23623
  }
@@ -23627,7 +23638,7 @@ var prefixSumAddressIfcTransformerTypeEnum = new Uint32Array([0, 9, 18, 29, 42,
23627
23638
  var slotMapIfcTransformerTypeEnum = new Int32Array([0, 4, 3, 5, 1, 6, 2]);
23628
23639
  var encodedDataIfcTransformerTypeEnum = new TextEncoder().encode(".CURRENT..VOLTAGE..RECTIFIER..USERDEFINED..FREQUENCY..NOTDEFINED..INVERTER.");
23629
23640
  var IfcTransformerTypeEnumSearch = new MinimalPerfectHash(gMapIfcTransformerTypeEnum, prefixSumAddressIfcTransformerTypeEnum, slotMapIfcTransformerTypeEnum, encodedDataIfcTransformerTypeEnum);
23630
- var parser187 = StepEnumParser.Instance;
23641
+ var parser187 = step_enum_parser_default.Instance;
23631
23642
  function IfcTransformerTypeEnumDeserializeStep(input, cursor, endCursor) {
23632
23643
  return parser187.extract(IfcTransformerTypeEnumSearch, input, cursor, endCursor);
23633
23644
  }
@@ -23645,7 +23656,7 @@ var prefixSumAddressIfcTransitionCode = new Uint32Array([0, 31, 43, 58, 76]);
23645
23656
  var slotMapIfcTransitionCode = new Int32Array([3, 1, 0, 2]);
23646
23657
  var encodedDataIfcTransitionCode = new TextEncoder().encode(".CONTSAMEGRADIENTSAMECURVATURE..CONTINUOUS..DISCONTINUOUS..CONTSAMEGRADIENT.");
23647
23658
  var IfcTransitionCodeSearch = new MinimalPerfectHash(gMapIfcTransitionCode, prefixSumAddressIfcTransitionCode, slotMapIfcTransitionCode, encodedDataIfcTransitionCode);
23648
- var parser188 = StepEnumParser.Instance;
23659
+ var parser188 = step_enum_parser_default.Instance;
23649
23660
  function IfcTransitionCodeDeserializeStep(input, cursor, endCursor) {
23650
23661
  return parser188.extract(IfcTransitionCodeSearch, input, cursor, endCursor);
23651
23662
  }
@@ -23666,7 +23677,7 @@ var prefixSumAddressIfcTransportElementTypeEnum = new Uint32Array([0, 15, 28, 40
23666
23677
  var slotMapIfcTransportElementTypeEnum = new Int32Array([2, 5, 6, 4, 0, 1, 3]);
23667
23678
  var encodedDataIfcTransportElementTypeEnum = new TextEncoder().encode(".MOVINGWALKWAY..USERDEFINED..NOTDEFINED..LIFTINGGEAR..ELEVATOR..ESCALATOR..CRANEWAY.");
23668
23679
  var IfcTransportElementTypeEnumSearch = new MinimalPerfectHash(gMapIfcTransportElementTypeEnum, prefixSumAddressIfcTransportElementTypeEnum, slotMapIfcTransportElementTypeEnum, encodedDataIfcTransportElementTypeEnum);
23669
- var parser189 = StepEnumParser.Instance;
23680
+ var parser189 = step_enum_parser_default.Instance;
23670
23681
  function IfcTransportElementTypeEnumDeserializeStep(input, cursor, endCursor) {
23671
23682
  return parser189.extract(IfcTransportElementTypeEnumSearch, input, cursor, endCursor);
23672
23683
  }
@@ -23683,7 +23694,7 @@ var prefixSumAddressIfcTrimmingPreference = new Uint32Array([0, 13, 24, 35]);
23683
23694
  var slotMapIfcTrimmingPreference = new Int32Array([2, 0, 1]);
23684
23695
  var encodedDataIfcTrimmingPreference = new TextEncoder().encode(".UNSPECIFIED..CARTESIAN..PARAMETER.");
23685
23696
  var IfcTrimmingPreferenceSearch = new MinimalPerfectHash(gMapIfcTrimmingPreference, prefixSumAddressIfcTrimmingPreference, slotMapIfcTrimmingPreference, encodedDataIfcTrimmingPreference);
23686
- var parser190 = StepEnumParser.Instance;
23697
+ var parser190 = step_enum_parser_default.Instance;
23687
23698
  function IfcTrimmingPreferenceDeserializeStep(input, cursor, endCursor) {
23688
23699
  return parser190.extract(IfcTrimmingPreferenceSearch, input, cursor, endCursor);
23689
23700
  }
@@ -23700,7 +23711,7 @@ var prefixSumAddressIfcTubeBundleTypeEnum = new Uint32Array([0, 13, 21, 33]);
23700
23711
  var slotMapIfcTubeBundleTypeEnum = new Int32Array([1, 0, 2]);
23701
23712
  var encodedDataIfcTubeBundleTypeEnum = new TextEncoder().encode(".USERDEFINED..FINNED..NOTDEFINED.");
23702
23713
  var IfcTubeBundleTypeEnumSearch = new MinimalPerfectHash(gMapIfcTubeBundleTypeEnum, prefixSumAddressIfcTubeBundleTypeEnum, slotMapIfcTubeBundleTypeEnum, encodedDataIfcTubeBundleTypeEnum);
23703
- var parser191 = StepEnumParser.Instance;
23714
+ var parser191 = step_enum_parser_default.Instance;
23704
23715
  function IfcTubeBundleTypeEnumDeserializeStep(input, cursor, endCursor) {
23705
23716
  return parser191.extract(IfcTubeBundleTypeEnumSearch, input, cursor, endCursor);
23706
23717
  }
@@ -23724,7 +23735,7 @@ var prefixSumAddressIfcUnitaryControlElementTypeEnum = new Uint32Array([0, 12, 2
23724
23735
  var slotMapIfcUnitaryControlElementTypeEnum = new Int32Array([9, 1, 4, 7, 8, 6, 0, 2, 5, 3]);
23725
23736
  var encodedDataIfcUnitaryControlElementTypeEnum = new TextEncoder().encode(".NOTDEFINED..CONTROLPANEL..MIMICPANEL..WEATHERSTATION..USERDEFINED..THERMOSTAT..ALARMPANEL..GASDETECTIONPANEL..HUMIDISTAT..INDICATORPANEL.");
23726
23737
  var IfcUnitaryControlElementTypeEnumSearch = new MinimalPerfectHash(gMapIfcUnitaryControlElementTypeEnum, prefixSumAddressIfcUnitaryControlElementTypeEnum, slotMapIfcUnitaryControlElementTypeEnum, encodedDataIfcUnitaryControlElementTypeEnum);
23727
- var parser192 = StepEnumParser.Instance;
23738
+ var parser192 = step_enum_parser_default.Instance;
23728
23739
  function IfcUnitaryControlElementTypeEnumDeserializeStep(input, cursor, endCursor) {
23729
23740
  return parser192.extract(IfcUnitaryControlElementTypeEnumSearch, input, cursor, endCursor);
23730
23741
  }
@@ -23745,7 +23756,7 @@ var prefixSumAddressIfcUnitaryEquipmentTypeEnum = new Uint32Array([0, 12, 33, 47
23745
23756
  var slotMapIfcUnitaryEquipmentTypeEnum = new Int32Array([6, 1, 2, 4, 3, 5, 0]);
23746
23757
  var encodedDataIfcUnitaryEquipmentTypeEnum = new TextEncoder().encode(".NOTDEFINED..AIRCONDITIONINGUNIT..DEHUMIDIFIER..ROOFTOPUNIT..SPLITSYSTEM..USERDEFINED..AIRHANDLER.");
23747
23758
  var IfcUnitaryEquipmentTypeEnumSearch = new MinimalPerfectHash(gMapIfcUnitaryEquipmentTypeEnum, prefixSumAddressIfcUnitaryEquipmentTypeEnum, slotMapIfcUnitaryEquipmentTypeEnum, encodedDataIfcUnitaryEquipmentTypeEnum);
23748
- var parser193 = StepEnumParser.Instance;
23759
+ var parser193 = step_enum_parser_default.Instance;
23749
23760
  function IfcUnitaryEquipmentTypeEnumDeserializeStep(input, cursor, endCursor) {
23750
23761
  return parser193.extract(IfcUnitaryEquipmentTypeEnumSearch, input, cursor, endCursor);
23751
23762
  }
@@ -23789,7 +23800,7 @@ var prefixSumAddressIfcUnitEnum = new Uint32Array([0, 12, 33, 43, 53, 64, 88, 11
23789
23800
  var slotMapIfcUnitEnum = new Int32Array([15, 7, 27, 2, 22, 8, 6, 5, 25, 12, 20, 11, 10, 18, 29, 13, 0, 24, 19, 4, 26, 21, 9, 16, 3, 1, 14, 28, 23, 17]);
23790
23801
  var encodedDataIfcUnitEnum = new TextEncoder().encode(".LENGTHUNIT..ELECTRICCURRENTUNIT..TIMEUNIT..AREAUNIT..POWERUNIT..ELECTRICRESISTANCEUNIT..ELECTRICCONDUCTANCEUNIT..ELECTRICCHARGEUNIT..SOLIDANGLEUNIT..FREQUENCYUNIT..MASSUNIT..FORCEUNIT..ENERGYUNIT..MAGNETICFLUXDENSITYUNIT..USERDEFINED..ILLUMINANCEUNIT..ABSORBEDDOSEUNIT..RADIOACTIVITYUNIT..MAGNETICFLUXUNIT..ELECTRICCAPACITANCEUNIT..THERMODYNAMICTEMPERATUREUNIT..PLANEANGLEUNIT..ELECTRICVOLTAGEUNIT..LUMINOUSFLUXUNIT..DOSEEQUIVALENTUNIT..AMOUNTOFSUBSTANCEUNIT..INDUCTANCEUNIT..VOLUMEUNIT..PRESSUREUNIT..LUMINOUSINTENSITYUNIT.");
23791
23802
  var IfcUnitEnumSearch = new MinimalPerfectHash(gMapIfcUnitEnum, prefixSumAddressIfcUnitEnum, slotMapIfcUnitEnum, encodedDataIfcUnitEnum);
23792
- var parser194 = StepEnumParser.Instance;
23803
+ var parser194 = step_enum_parser_default.Instance;
23793
23804
  function IfcUnitEnumDeserializeStep(input, cursor, endCursor) {
23794
23805
  return parser194.extract(IfcUnitEnumSearch, input, cursor, endCursor);
23795
23806
  }
@@ -23826,7 +23837,7 @@ var prefixSumAddressIfcValveTypeEnum = new Uint32Array([0, 8, 18, 27, 34, 45, 57
23826
23837
  var slotMapIfcValveTypeEnum = new Int32Array([14, 20, 11, 3, 5, 0, 19, 12, 21, 13, 1, 2, 16, 7, 15, 10, 6, 4, 8, 18, 22, 9, 17]);
23827
23838
  var encodedDataIfcValveTypeEnum = new TextEncoder().encode(".MIXING..STOPCOCK..GASCOCK..CHECK..DIVERTING..AIRRELEASE..STEAMTRAP..GASTAP..USERDEFINED..ISOLATING..ANTIVACUUM..CHANGEOVER..PRESSURERELIEF..DOUBLECHECK..PRESSUREREDUCING..FLUSHING..DRAWOFFCOCK..COMMISSIONING..DOUBLEREGULATING..SAFETYCUTOFF..NOTDEFINED..FAUCET..REGULATING.");
23828
23839
  var IfcValveTypeEnumSearch = new MinimalPerfectHash(gMapIfcValveTypeEnum, prefixSumAddressIfcValveTypeEnum, slotMapIfcValveTypeEnum, encodedDataIfcValveTypeEnum);
23829
- var parser195 = StepEnumParser.Instance;
23840
+ var parser195 = step_enum_parser_default.Instance;
23830
23841
  function IfcValveTypeEnumDeserializeStep(input, cursor, endCursor) {
23831
23842
  return parser195.extract(IfcValveTypeEnumSearch, input, cursor, endCursor);
23832
23843
  }
@@ -23844,7 +23855,7 @@ var prefixSumAddressIfcVibrationIsolatorTypeEnum = new Uint32Array([0, 8, 20, 33
23844
23855
  var slotMapIfcVibrationIsolatorTypeEnum = new Int32Array([1, 3, 2, 0]);
23845
23856
  var encodedDataIfcVibrationIsolatorTypeEnum = new TextEncoder().encode(".SPRING..NOTDEFINED..USERDEFINED..COMPRESSION.");
23846
23857
  var IfcVibrationIsolatorTypeEnumSearch = new MinimalPerfectHash(gMapIfcVibrationIsolatorTypeEnum, prefixSumAddressIfcVibrationIsolatorTypeEnum, slotMapIfcVibrationIsolatorTypeEnum, encodedDataIfcVibrationIsolatorTypeEnum);
23847
- var parser196 = StepEnumParser.Instance;
23858
+ var parser196 = step_enum_parser_default.Instance;
23848
23859
  function IfcVibrationIsolatorTypeEnumDeserializeStep(input, cursor, endCursor) {
23849
23860
  return parser196.extract(IfcVibrationIsolatorTypeEnumSearch, input, cursor, endCursor);
23850
23861
  }
@@ -23866,7 +23877,7 @@ var prefixSumAddressIfcVoidingFeatureTypeEnum = new Uint32Array([0, 6, 15, 27, 3
23866
23877
  var slotMapIfcVoidingFeatureTypeEnum = new Int32Array([2, 4, 7, 1, 0, 5, 6, 3]);
23867
23878
  var encodedDataIfcVoidingFeatureTypeEnum = new TextEncoder().encode(".HOLE..CHAMFER..NOTDEFINED..NOTCH..CUTOUT..EDGE..USERDEFINED..MITER.");
23868
23879
  var IfcVoidingFeatureTypeEnumSearch = new MinimalPerfectHash(gMapIfcVoidingFeatureTypeEnum, prefixSumAddressIfcVoidingFeatureTypeEnum, slotMapIfcVoidingFeatureTypeEnum, encodedDataIfcVoidingFeatureTypeEnum);
23869
- var parser197 = StepEnumParser.Instance;
23880
+ var parser197 = step_enum_parser_default.Instance;
23870
23881
  function IfcVoidingFeatureTypeEnumDeserializeStep(input, cursor, endCursor) {
23871
23882
  return parser197.extract(IfcVoidingFeatureTypeEnumSearch, input, cursor, endCursor);
23872
23883
  }
@@ -23891,7 +23902,7 @@ var prefixSumAddressIfcWallTypeEnum = new Uint32Array([0, 10, 22, 29, 40, 54, 65
23891
23902
  var slotMapIfcWallTypeEnum = new Int32Array([6, 10, 4, 5, 3, 7, 0, 8, 1, 9, 2]);
23892
23903
  var encodedDataIfcWallTypeEnum = new TextEncoder().encode(".STANDARD..NOTDEFINED..SHEAR..SOLIDWALL..PLUMBINGWALL..POLYGONAL..MOVABLE..ELEMENTEDWALL..PARAPET..USERDEFINED..PARTITIONING.");
23893
23904
  var IfcWallTypeEnumSearch = new MinimalPerfectHash(gMapIfcWallTypeEnum, prefixSumAddressIfcWallTypeEnum, slotMapIfcWallTypeEnum, encodedDataIfcWallTypeEnum);
23894
- var parser198 = StepEnumParser.Instance;
23905
+ var parser198 = step_enum_parser_default.Instance;
23895
23906
  function IfcWallTypeEnumDeserializeStep(input, cursor, endCursor) {
23896
23907
  return parser198.extract(IfcWallTypeEnumSearch, input, cursor, endCursor);
23897
23908
  }
@@ -23914,7 +23925,7 @@ var prefixSumAddressIfcWasteTerminalTypeEnum = new Uint32Array([0, 12, 23, 42, 5
23914
23925
  var slotMapIfcWasteTerminalTypeEnum = new Int32Array([8, 0, 5, 6, 3, 4, 2, 7, 1]);
23915
23926
  var encodedDataIfcWasteTerminalTypeEnum = new TextEncoder().encode(".NOTDEFINED..FLOORTRAP..WASTEDISPOSALUNIT..WASTETRAP..GULLYTRAP..ROOFDRAIN..GULLYSUMP..USERDEFINED..FLOORWASTE.");
23916
23927
  var IfcWasteTerminalTypeEnumSearch = new MinimalPerfectHash(gMapIfcWasteTerminalTypeEnum, prefixSumAddressIfcWasteTerminalTypeEnum, slotMapIfcWasteTerminalTypeEnum, encodedDataIfcWasteTerminalTypeEnum);
23917
- var parser199 = StepEnumParser.Instance;
23928
+ var parser199 = step_enum_parser_default.Instance;
23918
23929
  function IfcWasteTerminalTypeEnumDeserializeStep(input, cursor, endCursor) {
23919
23930
  return parser199.extract(IfcWasteTerminalTypeEnumSearch, input, cursor, endCursor);
23920
23931
  }
@@ -23942,7 +23953,7 @@ var prefixSumAddressIfcWindowPanelOperationEnum = new Uint32Array([0, 15, 27, 46
23942
23953
  var slotMapIfcWindowPanelOperationEnum = new Int32Array([11, 13, 8, 2, 7, 1, 6, 12, 3, 5, 9, 0, 10, 4]);
23943
23954
  var encodedDataIfcWindowPanelOperationEnum = new TextEncoder().encode(".FIXEDCASEMENT..NOTDEFINED..SLIDINGHORIZONTAL..TILTANDTURNRIGHTHAND..PIVOTVERTICAL..SIDEHUNGLEFTHAND..PIVOTHORIZONTAL..OTHEROPERATION..TILTANDTURNLEFTHAND..BOTTOMHUNG..SLIDINGVERTICAL..SIDEHUNGRIGHTHAND..REMOVABLECASEMENT..TOPHUNG.");
23944
23955
  var IfcWindowPanelOperationEnumSearch = new MinimalPerfectHash(gMapIfcWindowPanelOperationEnum, prefixSumAddressIfcWindowPanelOperationEnum, slotMapIfcWindowPanelOperationEnum, encodedDataIfcWindowPanelOperationEnum);
23945
- var parser200 = StepEnumParser.Instance;
23956
+ var parser200 = step_enum_parser_default.Instance;
23946
23957
  function IfcWindowPanelOperationEnumDeserializeStep(input, cursor, endCursor) {
23947
23958
  return parser200.extract(IfcWindowPanelOperationEnumSearch, input, cursor, endCursor);
23948
23959
  }
@@ -23962,7 +23973,7 @@ var prefixSumAddressIfcWindowPanelPositionEnum = new Uint32Array([0, 6, 14, 26,
23962
23973
  var slotMapIfcWindowPanelPositionEnum = new Int32Array([0, 1, 5, 2, 4, 3]);
23963
23974
  var encodedDataIfcWindowPanelPositionEnum = new TextEncoder().encode(".LEFT..MIDDLE..NOTDEFINED..RIGHT..TOP..BOTTOM.");
23964
23975
  var IfcWindowPanelPositionEnumSearch = new MinimalPerfectHash(gMapIfcWindowPanelPositionEnum, prefixSumAddressIfcWindowPanelPositionEnum, slotMapIfcWindowPanelPositionEnum, encodedDataIfcWindowPanelPositionEnum);
23965
- var parser201 = StepEnumParser.Instance;
23976
+ var parser201 = step_enum_parser_default.Instance;
23966
23977
  function IfcWindowPanelPositionEnumDeserializeStep(input, cursor, endCursor) {
23967
23978
  return parser201.extract(IfcWindowPanelPositionEnumSearch, input, cursor, endCursor);
23968
23979
  }
@@ -23984,7 +23995,7 @@ var prefixSumAddressIfcWindowStyleConstructionEnum = new Uint32Array([0, 12, 23,
23984
23995
  var slotMapIfcWindowStyleConstructionEnum = new Int32Array([7, 0, 5, 4, 2, 6, 1, 3]);
23985
23996
  var encodedDataIfcWindowStyleConstructionEnum = new TextEncoder().encode(".NOTDEFINED..ALUMINIUM..PLASTIC..ALUMINIUM_WOOD..STEEL..OTHER_CONSTRUCTION..HIGH_GRADE_STEEL..WOOD.");
23986
23997
  var IfcWindowStyleConstructionEnumSearch = new MinimalPerfectHash(gMapIfcWindowStyleConstructionEnum, prefixSumAddressIfcWindowStyleConstructionEnum, slotMapIfcWindowStyleConstructionEnum, encodedDataIfcWindowStyleConstructionEnum);
23987
- var parser202 = StepEnumParser.Instance;
23998
+ var parser202 = step_enum_parser_default.Instance;
23988
23999
  function IfcWindowStyleConstructionEnumDeserializeStep(input, cursor, endCursor) {
23989
24000
  return parser202.extract(IfcWindowStyleConstructionEnumSearch, input, cursor, endCursor);
23990
24001
  }
@@ -24009,7 +24020,7 @@ var prefixSumAddressIfcWindowStyleOperationEnum = new Uint32Array([0, 13, 38, 61
24009
24020
  var slotMapIfcWindowStyleOperationEnum = new Int32Array([9, 8, 1, 5, 0, 10, 6, 3, 7, 4, 2]);
24010
24021
  var encodedDataIfcWindowStyleOperationEnum = new TextEncoder().encode(".USERDEFINED..TRIPLE_PANEL_HORIZONTAL..DOUBLE_PANEL_VERTICAL..TRIPLE_PANEL_TOP..SINGLE_PANEL..NOTDEFINED..TRIPLE_PANEL_LEFT..TRIPLE_PANEL_VERTICAL..TRIPLE_PANEL_RIGHT..TRIPLE_PANEL_BOTTOM..DOUBLE_PANEL_HORIZONTAL.");
24011
24022
  var IfcWindowStyleOperationEnumSearch = new MinimalPerfectHash(gMapIfcWindowStyleOperationEnum, prefixSumAddressIfcWindowStyleOperationEnum, slotMapIfcWindowStyleOperationEnum, encodedDataIfcWindowStyleOperationEnum);
24012
- var parser203 = StepEnumParser.Instance;
24023
+ var parser203 = step_enum_parser_default.Instance;
24013
24024
  function IfcWindowStyleOperationEnumDeserializeStep(input, cursor, endCursor) {
24014
24025
  return parser203.extract(IfcWindowStyleOperationEnumSearch, input, cursor, endCursor);
24015
24026
  }
@@ -24028,7 +24039,7 @@ var prefixSumAddressIfcWindowTypeEnum = new Uint32Array([0, 12, 25, 33, 44, 54])
24028
24039
  var slotMapIfcWindowTypeEnum = new Int32Array([4, 3, 0, 2, 1]);
24029
24040
  var encodedDataIfcWindowTypeEnum = new TextEncoder().encode(".NOTDEFINED..USERDEFINED..WINDOW..LIGHTDOME..SKYLIGHT.");
24030
24041
  var IfcWindowTypeEnumSearch = new MinimalPerfectHash(gMapIfcWindowTypeEnum, prefixSumAddressIfcWindowTypeEnum, slotMapIfcWindowTypeEnum, encodedDataIfcWindowTypeEnum);
24031
- var parser204 = StepEnumParser.Instance;
24042
+ var parser204 = step_enum_parser_default.Instance;
24032
24043
  function IfcWindowTypeEnumDeserializeStep(input, cursor, endCursor) {
24033
24044
  return parser204.extract(IfcWindowTypeEnumSearch, input, cursor, endCursor);
24034
24045
  }
@@ -24053,7 +24064,7 @@ var prefixSumAddressIfcWindowTypePartitioningEnum = new Uint32Array([0, 13, 38,
24053
24064
  var slotMapIfcWindowTypePartitioningEnum = new Int32Array([9, 8, 1, 5, 0, 10, 6, 3, 7, 4, 2]);
24054
24065
  var encodedDataIfcWindowTypePartitioningEnum = new TextEncoder().encode(".USERDEFINED..TRIPLE_PANEL_HORIZONTAL..DOUBLE_PANEL_VERTICAL..TRIPLE_PANEL_TOP..SINGLE_PANEL..NOTDEFINED..TRIPLE_PANEL_LEFT..TRIPLE_PANEL_VERTICAL..TRIPLE_PANEL_RIGHT..TRIPLE_PANEL_BOTTOM..DOUBLE_PANEL_HORIZONTAL.");
24055
24066
  var IfcWindowTypePartitioningEnumSearch = new MinimalPerfectHash(gMapIfcWindowTypePartitioningEnum, prefixSumAddressIfcWindowTypePartitioningEnum, slotMapIfcWindowTypePartitioningEnum, encodedDataIfcWindowTypePartitioningEnum);
24056
- var parser205 = StepEnumParser.Instance;
24067
+ var parser205 = step_enum_parser_default.Instance;
24057
24068
  function IfcWindowTypePartitioningEnumDeserializeStep(input, cursor, endCursor) {
24058
24069
  return parser205.extract(IfcWindowTypePartitioningEnumSearch, input, cursor, endCursor);
24059
24070
  }
@@ -24072,7 +24083,7 @@ var prefixSumAddressIfcWorkCalendarTypeEnum = new Uint32Array([0, 13, 25, 37, 50
24072
24083
  var slotMapIfcWorkCalendarTypeEnum = new Int32Array([3, 4, 0, 1, 2]);
24073
24084
  var encodedDataIfcWorkCalendarTypeEnum = new TextEncoder().encode(".USERDEFINED..NOTDEFINED..FIRSTSHIFT..SECONDSHIFT..THIRDSHIFT.");
24074
24085
  var IfcWorkCalendarTypeEnumSearch = new MinimalPerfectHash(gMapIfcWorkCalendarTypeEnum, prefixSumAddressIfcWorkCalendarTypeEnum, slotMapIfcWorkCalendarTypeEnum, encodedDataIfcWorkCalendarTypeEnum);
24075
- var parser206 = StepEnumParser.Instance;
24086
+ var parser206 = step_enum_parser_default.Instance;
24076
24087
  function IfcWorkCalendarTypeEnumDeserializeStep(input, cursor, endCursor) {
24077
24088
  return parser206.extract(IfcWorkCalendarTypeEnumSearch, input, cursor, endCursor);
24078
24089
  }
@@ -24091,7 +24102,7 @@ var prefixSumAddressIfcWorkPlanTypeEnum = new Uint32Array([0, 10, 19, 31, 39, 52
24091
24102
  var slotMapIfcWorkPlanTypeEnum = new Int32Array([1, 2, 4, 0, 3]);
24092
24103
  var encodedDataIfcWorkPlanTypeEnum = new TextEncoder().encode(".BASELINE..PLANNED..NOTDEFINED..ACTUAL..USERDEFINED.");
24093
24104
  var IfcWorkPlanTypeEnumSearch = new MinimalPerfectHash(gMapIfcWorkPlanTypeEnum, prefixSumAddressIfcWorkPlanTypeEnum, slotMapIfcWorkPlanTypeEnum, encodedDataIfcWorkPlanTypeEnum);
24094
- var parser207 = StepEnumParser.Instance;
24105
+ var parser207 = step_enum_parser_default.Instance;
24095
24106
  function IfcWorkPlanTypeEnumDeserializeStep(input, cursor, endCursor) {
24096
24107
  return parser207.extract(IfcWorkPlanTypeEnumSearch, input, cursor, endCursor);
24097
24108
  }
@@ -24110,7 +24121,7 @@ var prefixSumAddressIfcWorkScheduleTypeEnum = new Uint32Array([0, 10, 19, 31, 39
24110
24121
  var slotMapIfcWorkScheduleTypeEnum = new Int32Array([1, 2, 4, 0, 3]);
24111
24122
  var encodedDataIfcWorkScheduleTypeEnum = new TextEncoder().encode(".BASELINE..PLANNED..NOTDEFINED..ACTUAL..USERDEFINED.");
24112
24123
  var IfcWorkScheduleTypeEnumSearch = new MinimalPerfectHash(gMapIfcWorkScheduleTypeEnum, prefixSumAddressIfcWorkScheduleTypeEnum, slotMapIfcWorkScheduleTypeEnum, encodedDataIfcWorkScheduleTypeEnum);
24113
- var parser208 = StepEnumParser.Instance;
24124
+ var parser208 = step_enum_parser_default.Instance;
24114
24125
  function IfcWorkScheduleTypeEnumDeserializeStep(input, cursor, endCursor) {
24115
24126
  return parser208.extract(IfcWorkScheduleTypeEnumSearch, input, cursor, endCursor);
24116
24127
  }
@@ -83638,7 +83649,7 @@ var schema_ifc_gen_default = SchemaIfc;
83638
83649
 
83639
83650
  // compiled/src/indexing/multi_index_set_cursor_or.js
83640
83651
  var pool = [];
83641
- var MASK_TOPBITS2 = IndexSetConstants.MASK_TOPBITS;
83652
+ var MASK_TOPBITS2 = index_set_constants_default.MASK_TOPBITS;
83642
83653
  var STARTING_CURSOR_SET_CAPACITY = 2;
83643
83654
  var MultiIndexSetCursorOr = class _MultiIndexSetCursorOr {
83644
83655
  /**
@@ -83755,8 +83766,8 @@ var MultiIndexSetCursorOr = class _MultiIndexSetCursorOr {
83755
83766
  };
83756
83767
 
83757
83768
  // compiled/src/indexing/search_operations.js
83758
- var MASK_BOTTOMBITS2 = IndexSetConstants.MASK_BOTTOMBITS;
83759
- var MASK_TOPBITS3 = IndexSetConstants.MASK_TOPBITS;
83769
+ var MASK_BOTTOMBITS2 = index_set_constants_default.MASK_BOTTOMBITS;
83770
+ var MASK_TOPBITS3 = index_set_constants_default.MASK_TOPBITS;
83760
83771
  function indexSetSearch32(searchValue, buffer, offset = 0, end) {
83761
83772
  let right = end ?? buffer.length;
83762
83773
  searchValue &= MASK_TOPBITS3;
@@ -84981,9 +84992,10 @@ var StepExternalMapping = class extends StepEntityBase {
84981
84992
  };
84982
84993
  StepExternalMapping.query = [0];
84983
84994
  StepExternalMapping.expectedType = 0;
84995
+ var step_external_mapping_default = StepExternalMapping;
84984
84996
 
84985
84997
  // compiled/src/ifc/ifc_step_external_mapping.js
84986
- var IfcStepExternalMapping = class extends StepExternalMapping {
84998
+ var IfcStepExternalMapping = class extends step_external_mapping_default {
84987
84999
  /**
84988
85000
  * Construct this external mapping.
84989
85001
  *
@@ -84997,6 +85009,7 @@ var IfcStepExternalMapping = class extends StepExternalMapping {
84997
85009
  };
84998
85010
  IfcStepExternalMapping.query = [entity_types_ifc_gen_default.EXTERNALMAPPINGCONTAINER];
84999
85011
  IfcStepExternalMapping.expectedType = entity_types_ifc_gen_default.EXTERNALMAPPINGCONTAINER;
85012
+ var ifc_step_external_mapping_default = IfcStepExternalMapping;
85000
85013
 
85001
85014
  // compiled/src/core/regression_capture_state.js
85002
85015
  var MemoizationCapture;
@@ -85280,7 +85293,7 @@ var IfcStepModel = class extends StepModelBase {
85280
85293
  */
85281
85294
  constructor(buffer, elementIndex) {
85282
85295
  super(schema_ifc_gen_default, buffer, elementIndex);
85283
- this.externalMappingType = IfcStepExternalMapping;
85296
+ this.externalMappingType = ifc_step_external_mapping_default;
85284
85297
  this.geometry = new IfcModelGeometry(this);
85285
85298
  this.voidGeometry = new IfcModelGeometry(this, true);
85286
85299
  this.profiles = new IfcModelProfile(this);
@@ -85314,6 +85327,7 @@ var IfcStepParser = class extends StepParser {
85314
85327
  }
85315
85328
  };
85316
85329
  IfcStepParser.Instance = new IfcStepParser();
85330
+ var ifc_step_parser_default = IfcStepParser;
85317
85331
 
85318
85332
  // node_modules/yargs/yargs.mjs
85319
85333
  var import_build = __toESM(require_build4(), 1);
@@ -85869,7 +85883,7 @@ var IfcSceneBuilder = class {
85869
85883
  };
85870
85884
 
85871
85885
  // compiled/src/version/version.js
85872
- var versionString = "Conway Web-Ifc Shim v1.354.1120";
85886
+ var versionString = "Conway Web-Ifc Shim v1.355.1122";
85873
85887
 
85874
85888
  // compiled/src/statistics/statistics.js
85875
85889
  var Statistics = class {
@@ -86067,19 +86081,20 @@ var Environment = class {
86067
86081
  const isBrowser = typeof window !== "undefined" && typeof window.document !== "undefined";
86068
86082
  const isNode = typeof global !== "undefined" && typeof global.process !== "undefined" && global.process.versions && global.process.versions.node;
86069
86083
  if (isBrowser && isNode) {
86070
- Logger.info("This environment has features of both Node.js and a web browser.");
86084
+ logger_default.info("This environment has features of both Node.js and a web browser.");
86071
86085
  this.environmentType = EnvironmentType.BOTH_FEATURES;
86072
86086
  } else if (isNode) {
86073
86087
  this.environmentType = EnvironmentType.NODE;
86074
86088
  } else if (isBrowser) {
86075
86089
  this.environmentType = EnvironmentType.BROWSER;
86076
86090
  } else {
86077
- Logger.info("ENVIRONMENT === unknown");
86091
+ logger_default.info("ENVIRONMENT === unknown");
86078
86092
  this.environmentType = EnvironmentType.UNKNOWN;
86079
86093
  }
86080
86094
  }
86081
86095
  };
86082
86096
  Environment.environmentType = EnvironmentType.UNKNOWN;
86097
+ var environment_default = Environment;
86083
86098
 
86084
86099
  // compiled/src/logging/logger.js
86085
86100
  var Logger = class _Logger {
@@ -86087,7 +86102,7 @@ var Logger = class _Logger {
86087
86102
  * Detects environment and initializes wasm callbacks
86088
86103
  */
86089
86104
  static initializeWasmCallbacks() {
86090
- const environment = Environment.environmentType;
86105
+ const environment = environment_default.environmentType;
86091
86106
  if (environment === EnvironmentType.BROWSER) {
86092
86107
  const globalScope = window;
86093
86108
  globalScope.logInfo = _Logger.info;
@@ -86252,6 +86267,7 @@ var Logger = class _Logger {
86252
86267
  Logger.logs = [];
86253
86268
  Logger.proxies = [];
86254
86269
  Logger.statistics = /* @__PURE__ */ new Map();
86270
+ var logger_default = Logger;
86255
86271
 
86256
86272
  // compiled/src/ifc/ifc_parser_quirks.js
86257
86273
  var MATERIAL_RELATED_OBJECTS_PERMISSIVE = true;
@@ -86789,7 +86805,7 @@ var IfcGeometryExtraction = class _IfcGeometryExtraction {
86789
86805
  for (const entity of entities) {
86790
86806
  faceSetResult = this.extractPolygonalFaceSet(entity);
86791
86807
  if (faceSetResult !== ExtractResult.COMPLETE) {
86792
- Logger.warning(`Face set express ID: ${entity.expressID} extraction incomplete.`);
86808
+ logger_default.warning(`Face set express ID: ${entity.expressID} extraction incomplete.`);
86793
86809
  result = ExtractResult.INCOMPLETE;
86794
86810
  }
86795
86811
  }
@@ -86895,7 +86911,7 @@ var IfcGeometryExtraction = class _IfcGeometryExtraction {
86895
86911
  flatFirstMeshVector = this.nativeVectorGeometry();
86896
86912
  flatFirstMeshVector.push_back(firstMesh.geometry);
86897
86913
  } else {
86898
- Logger.error(`Error extracting firstOperand geometry for expressID:
86914
+ logger_default.error(`Error extracting firstOperand geometry for expressID:
86899
86915
  ${from.FirstOperand.expressID} - type:
86900
86916
  ${entity_types_ifc_gen_default[from.FirstOperand.type]} - isRelVoid: ${isRelVoid ? "True" : "False"}`);
86901
86917
  return;
@@ -86906,7 +86922,7 @@ var IfcGeometryExtraction = class _IfcGeometryExtraction {
86906
86922
  flatSecondMeshVector = this.nativeVectorGeometry();
86907
86923
  flatSecondMeshVector.push_back(secondMesh.geometry);
86908
86924
  } else {
86909
- Logger.error(`Error extracting secondOperand geometry for expressID:
86925
+ logger_default.error(`Error extracting secondOperand geometry for expressID:
86910
86926
  ${from.SecondOperand.localID} - type:
86911
86927
  ${entity_types_ifc_gen_default[from.SecondOperand.type]} - isRelVoid: ${isRelVoid ? "True" : "False"}`);
86912
86928
  return;
@@ -86980,7 +86996,7 @@ var IfcGeometryExtraction = class _IfcGeometryExtraction {
86980
86996
  } else if (from instanceof IfcPolygonalFaceSet) {
86981
86997
  const faceSetResult = this.extractPolygonalFaceSet(from, true, isRelVoid);
86982
86998
  if (faceSetResult !== ExtractResult.COMPLETE) {
86983
- Logger.warning(`Warning, face set express ID: ${from.expressID} extraction incomplete.`);
86999
+ logger_default.warning(`Warning, face set express ID: ${from.expressID} extraction incomplete.`);
86984
87000
  }
86985
87001
  } else if (from instanceof IfcPolygonalBoundedHalfSpace) {
86986
87002
  this.extractPolygonalBoundedHalfSpace(from, true, isRelVoid);
@@ -87037,7 +87053,7 @@ var IfcGeometryExtraction = class _IfcGeometryExtraction {
87037
87053
  flatFirstMeshVector = this.nativeVectorGeometry();
87038
87054
  flatFirstMeshVector.push_back(firstMesh.geometry);
87039
87055
  } else {
87040
- Logger.error(`(Operand) Error extracting firstOperand geometry for expressID:
87056
+ logger_default.error(`(Operand) Error extracting firstOperand geometry for expressID:
87041
87057
  ${from.FirstOperand.expressID} - type:
87042
87058
  ${entity_types_ifc_gen_default[from.FirstOperand.type]} - isRelVoid: ${isRelVoid ? "True" : "False"}`);
87043
87059
  return;
@@ -87048,7 +87064,7 @@ var IfcGeometryExtraction = class _IfcGeometryExtraction {
87048
87064
  flatSecondMeshVector = this.nativeVectorGeometry();
87049
87065
  flatSecondMeshVector.push_back(secondMesh.geometry);
87050
87066
  } else {
87051
- Logger.error(`(Operand) Error extracting secondOperand geometry for expressID:
87067
+ logger_default.error(`(Operand) Error extracting secondOperand geometry for expressID:
87052
87068
  ${from.SecondOperand.expressID} - type:
87053
87069
  ${entity_types_ifc_gen_default[from.SecondOperand.type]} - isRelVoid: ${isRelVoid ? "True" : "False"}`);
87054
87070
  return;
@@ -87138,7 +87154,7 @@ var IfcGeometryExtraction = class _IfcGeometryExtraction {
87138
87154
  } catch (ex) {
87139
87155
  if (ex instanceof Error) {
87140
87156
  if (REFLECTANCE_METHOD_PERMISSIVE) {
87141
- Logger.error(`Found null for nonnullable field IfcReflectanceMethodEnum. expressID: ${style.expressID}`);
87157
+ logger_default.error(`Found null for nonnullable field IfcReflectanceMethodEnum. expressID: ${style.expressID}`);
87142
87158
  } else {
87143
87159
  throw ex;
87144
87160
  }
@@ -87254,7 +87270,7 @@ var IfcGeometryExtraction = class _IfcGeometryExtraction {
87254
87270
  extractSweptDiskSolid(from, temporary = false, isRelVoid = false) {
87255
87271
  const directrix = this.extractCurve(from.Directrix);
87256
87272
  if (!directrix) {
87257
- Logger.error(`Directrix extraction failed for IFCSWEPTDISKSOLID, expressID:
87273
+ logger_default.error(`Directrix extraction failed for IFCSWEPTDISKSOLID, expressID:
87258
87274
  ${from.expressID}`);
87259
87275
  return;
87260
87276
  }
@@ -87496,7 +87512,7 @@ var IfcGeometryExtraction = class _IfcGeometryExtraction {
87496
87512
  this.model.voidGeometry.add(canonicalMesh);
87497
87513
  }
87498
87514
  } else {
87499
- Logger.error(`Couldn't parse profile,
87515
+ logger_default.error(`Couldn't parse profile,
87500
87516
  expressID: ${from.SweptArea.expressID} type: ${entity_types_ifc_gen_default[from.SweptArea.type]}`);
87501
87517
  }
87502
87518
  }
@@ -87730,10 +87746,10 @@ var IfcGeometryExtraction = class _IfcGeometryExtraction {
87730
87746
  this.paramsTransformProfilePool.release(paramsTransformProfile);
87731
87747
  return profile;
87732
87748
  } else {
87733
- Logger.error(`IfcDerivedProfileDef not parsed properly, express ID: ${from.expressID}`);
87749
+ logger_default.error(`IfcDerivedProfileDef not parsed properly, express ID: ${from.expressID}`);
87734
87750
  }
87735
87751
  } else {
87736
- Logger.warning(`Unsupported Profile! Type:
87752
+ logger_default.warning(`Unsupported Profile! Type:
87737
87753
  ${entity_types_ifc_gen_default[from.type]} expressID: ${from.expressID}`);
87738
87754
  }
87739
87755
  let isComposite = false;
@@ -87799,6 +87815,7 @@ var IfcGeometryExtraction = class _IfcGeometryExtraction {
87799
87815
  hasPlacement: true,
87800
87816
  placement: placement2D,
87801
87817
  hasFillet: false,
87818
+ // TODO(nickcastel50): Add fillet support to C curves
87802
87819
  // hasFillet: (from.InternalFilletRadius !== null),
87803
87820
  depth: from.Depth,
87804
87821
  width: from.Width,
@@ -87814,6 +87831,7 @@ var IfcGeometryExtraction = class _IfcGeometryExtraction {
87814
87831
  hasPlacement: false,
87815
87832
  placement: this.identity2DNativeMatrix,
87816
87833
  hasFillet: false,
87834
+ // TODO(nickcastel50): Add fillet support to C curves
87817
87835
  // hasFillet: (from.InternalFilletRadius !== null),
87818
87836
  depth: from.Depth,
87819
87837
  width: from.Width,
@@ -88146,7 +88164,7 @@ var IfcGeometryExtraction = class _IfcGeometryExtraction {
88146
88164
  ifcCurve = this.extractCurve(parentCurve, sameSense);
88147
88165
  }
88148
88166
  if (ifcCurve === void 0) {
88149
- Logger.warning(`Unsupported Curve! Type: ${entity_types_ifc_gen_default[from.type]}`);
88167
+ logger_default.warning(`Unsupported Curve! Type: ${entity_types_ifc_gen_default[from.type]}`);
88150
88168
  return;
88151
88169
  }
88152
88170
  this.curves.add(from.localID, ifcCurve);
@@ -88508,7 +88526,7 @@ var IfcGeometryExtraction = class _IfcGeometryExtraction {
88508
88526
  return curveObject;
88509
88527
  }
88510
88528
  } else {
88511
- Logger.warning(`Unsupported basis curve type: ${entity_types_ifc_gen_default[basisCurve.type]}`);
88529
+ logger_default.warning(`Unsupported basis curve type: ${entity_types_ifc_gen_default[basisCurve.type]}`);
88512
88530
  }
88513
88531
  return void 0;
88514
88532
  }
@@ -88595,6 +88613,7 @@ var IfcGeometryExtraction = class _IfcGeometryExtraction {
88595
88613
  return {
88596
88614
  pointer,
88597
88615
  length: offset,
88616
+ // how many Float64 values were used
88598
88617
  capacity
88599
88618
  };
88600
88619
  }
@@ -88919,11 +88938,11 @@ var IfcGeometryExtraction = class _IfcGeometryExtraction {
88919
88938
  }
88920
88939
  } catch (error) {
88921
88940
  if (error instanceof Error) {
88922
- Logger.error(`Couldn't extract mapped representation item
88941
+ logger_default.error(`Couldn't extract mapped representation item
88923
88942
  ${error.message}
88924
88943
  Express ID #${representationItem.expressID}`);
88925
88944
  } else {
88926
- Logger.error(`Couldn't extract mapped representation item
88945
+ logger_default.error(`Couldn't extract mapped representation item
88927
88946
  Express ID #${representationItem.expressID}`);
88928
88947
  }
88929
88948
  }
@@ -88968,7 +88987,7 @@ var IfcGeometryExtraction = class _IfcGeometryExtraction {
88968
88987
  } else if (from instanceof IfcPolygonalFaceSet) {
88969
88988
  const faceSetResult = this.extractPolygonalFaceSet(from, false, isRelVoid);
88970
88989
  if (faceSetResult !== ExtractResult.COMPLETE) {
88971
- Logger.warning(`Face set express ID: ${from.expressID} extraction incomplete.`);
88990
+ logger_default.warning(`Face set express ID: ${from.expressID} extraction incomplete.`);
88972
88991
  }
88973
88992
  } else if (from instanceof IfcTriangulatedFaceSet) {
88974
88993
  this.extractTriangulatedFaceSet(from, false, isRelVoid);
@@ -88997,7 +89016,7 @@ var IfcGeometryExtraction = class _IfcGeometryExtraction {
88997
89016
  } else if (from instanceof IfcAdvancedBrep) {
88998
89017
  this.extractIfcAdvancedBrep(from, isRelVoid);
88999
89018
  } else {
89000
- Logger.warning(`Unsupported type: ${entity_types_ifc_gen_default[from.type]} expressID: ${from.expressID}`);
89019
+ logger_default.warning(`Unsupported type: ${entity_types_ifc_gen_default[from.type]} expressID: ${from.expressID}`);
89001
89020
  }
89002
89021
  if (addGeometry) {
89003
89022
  this.scene.addGeometry(from.localID, owningElementLocalID, isSpace);
@@ -89328,7 +89347,7 @@ var IfcGeometryExtraction = class _IfcGeometryExtraction {
89328
89347
  }
89329
89348
  nativeEdgeCurves.push_back(curve2);
89330
89349
  } else {
89331
- Logger.error(`curve === undefined, type: ${entity_types_ifc_gen_default[edgeCurve.type]}`);
89350
+ logger_default.error(`curve === undefined, type: ${entity_types_ifc_gen_default[edgeCurve.type]}`);
89332
89351
  }
89333
89352
  } else {
89334
89353
  const start = edge.EdgeStart;
@@ -89346,7 +89365,7 @@ var IfcGeometryExtraction = class _IfcGeometryExtraction {
89346
89365
  }
89347
89366
  }
89348
89367
  } else {
89349
- Logger.warning(`Unsupported bound ${bound.Bound}`);
89368
+ logger_default.warning(`Unsupported bound ${bound.Bound}`);
89350
89369
  return;
89351
89370
  }
89352
89371
  const parameters2 = {
@@ -89388,35 +89407,35 @@ var IfcGeometryExtraction = class _IfcGeometryExtraction {
89388
89407
  } else if (surface instanceof IfcRationalBSplineSurfaceWithKnots) {
89389
89408
  nativeSurface.bspline = this.extractRationalBSplineSurfaceWithKnots(surface);
89390
89409
  if (!nativeSurface.bspline.active) {
89391
- Logger.warning("bspline surface not active, returning");
89410
+ logger_default.warning("bspline surface not active, returning");
89392
89411
  }
89393
89412
  } else if (surface instanceof IfcBSplineSurfaceWithKnots) {
89394
89413
  nativeSurface.bspline = this.extractBSplineSurfaceWithKnots(surface);
89395
89414
  if (!nativeSurface.bspline.active) {
89396
- Logger.warning("bspline surface with knots not active, returning");
89415
+ logger_default.warning("bspline surface with knots not active, returning");
89397
89416
  }
89398
89417
  } else if (surface instanceof IfcBSplineSurface) {
89399
89418
  nativeSurface.bspline = this.extractBSplineSurface(surface);
89400
89419
  if (!nativeSurface.bspline.active) {
89401
- Logger.warning("bspline surface not active, returning");
89420
+ logger_default.warning("bspline surface not active, returning");
89402
89421
  }
89403
89422
  } else if (surface instanceof IfcCylindricalSurface) {
89404
89423
  this.extractCylindricalSurface(surface, nativeSurface);
89405
89424
  if (!nativeSurface.cylinder.active) {
89406
- Logger.warning("cylindrical surface not active, returning");
89425
+ logger_default.warning("cylindrical surface not active, returning");
89407
89426
  }
89408
89427
  } else if (surface instanceof IfcSurfaceOfRevolution) {
89409
89428
  this.extractSurfaceOfRevolution(surface, nativeSurface);
89410
89429
  if (!nativeSurface.revolution.active) {
89411
- Logger.warning("revolution surface not active, returning");
89430
+ logger_default.warning("revolution surface not active, returning");
89412
89431
  }
89413
89432
  } else if (surface instanceof IfcSurfaceOfLinearExtrusion) {
89414
89433
  this.extractSurfaceOfLinearExtrusion(surface, nativeSurface);
89415
89434
  if (!nativeSurface.extrusion.active) {
89416
- Logger.warning("linear extrusion surface not active, returning");
89435
+ logger_default.warning("linear extrusion surface not active, returning");
89417
89436
  }
89418
89437
  } else {
89419
- Logger.warning(`Unknown surface type: ${surface}`);
89438
+ logger_default.warning(`Unknown surface type: ${surface}`);
89420
89439
  }
89421
89440
  }
89422
89441
  /**
@@ -89428,7 +89447,7 @@ var IfcGeometryExtraction = class _IfcGeometryExtraction {
89428
89447
  extractSurfaceOfLinearExtrusion(from, nativeSurface) {
89429
89448
  const profile = this.extractProfile(from.SweptCurve);
89430
89449
  if (profile?.nativeProfile === void 0) {
89431
- Logger.error("Could not get curve profile for linear extrusion surface");
89450
+ logger_default.error("Could not get curve profile for linear extrusion surface");
89432
89451
  return;
89433
89452
  }
89434
89453
  const directionCoords = from.ExtrudedDirection.DirectionRatios;
@@ -89452,12 +89471,12 @@ var IfcGeometryExtraction = class _IfcGeometryExtraction {
89452
89471
  extractSurfaceOfRevolution(from, nativeSurface) {
89453
89472
  const sweptCurve = from.SweptCurve;
89454
89473
  if (!(sweptCurve instanceof IfcArbitraryOpenProfileDef)) {
89455
- Logger.warning("Unexpected 3D profile type for surface of revolution");
89474
+ logger_default.warning("Unexpected 3D profile type for surface of revolution");
89456
89475
  return;
89457
89476
  }
89458
89477
  const profile = this.extractProfile(sweptCurve);
89459
89478
  if (profile === void 0 || profile.curve === void 0) {
89460
- Logger.warning("Missing profile type for surface of revolution");
89479
+ logger_default.warning("Missing profile type for surface of revolution");
89461
89480
  return;
89462
89481
  }
89463
89482
  const axisDirection = this.extractAxis1Placement3D(from.AxisPosition, from.localID, true);
@@ -89844,11 +89863,11 @@ var IfcGeometryExtraction = class _IfcGeometryExtraction {
89844
89863
  }
89845
89864
  } catch (error) {
89846
89865
  if (error instanceof Error) {
89847
- Logger.error(`Error extracting rel void representation item
89866
+ logger_default.error(`Error extracting rel void representation item
89848
89867
  ${error.message}
89849
89868
  Express ID: #${item.expressID}`);
89850
89869
  } else {
89851
- Logger.error(`Unknown Error extracting rel void representation item
89870
+ logger_default.error(`Unknown Error extracting rel void representation item
89852
89871
  ${error}
89853
89872
  Express ID: #${item.expressID}`);
89854
89873
  }
@@ -89912,7 +89931,7 @@ var IfcGeometryExtraction = class _IfcGeometryExtraction {
89912
89931
  return styledItemID;
89913
89932
  }
89914
89933
  } else {
89915
- Logger.warning(`from.Material === null`);
89934
+ logger_default.warning(`from.Material === null`);
89916
89935
  }
89917
89936
  } else if (from instanceof IfcMaterialProfileSet) {
89918
89937
  for (const material of from.MaterialProfiles) {
@@ -89968,7 +89987,7 @@ var IfcGeometryExtraction = class _IfcGeometryExtraction {
89968
89987
  } else if (material instanceof IfcMaterialConstituentSet) {
89969
89988
  styledItemID = this.extractMaterial(material);
89970
89989
  } else {
89971
- Logger.warning(`Material type not supported - type: ${entity_types_ifc_gen_default[material.type]}`);
89990
+ logger_default.warning(`Material type not supported - type: ${entity_types_ifc_gen_default[material.type]}`);
89972
89991
  }
89973
89992
  }
89974
89993
  }
@@ -90023,14 +90042,14 @@ var IfcGeometryExtraction = class _IfcGeometryExtraction {
90023
90042
  const projects = this.model.types(IfcProject);
90024
90043
  const projectsArray = Array.from(projects);
90025
90044
  if (projectsArray.length <= 0) {
90026
- Logger.error("No IfcProjects found?");
90045
+ logger_default.error("No IfcProjects found?");
90027
90046
  return;
90028
90047
  }
90029
90048
  const project = projectsArray[0];
90030
90049
  this.ifcProjectName = project.Name;
90031
90050
  const unitsInContext = project.UnitsInContext;
90032
90051
  if (unitsInContext === null) {
90033
- Logger.warning("No units defined.");
90052
+ logger_default.warning("No units defined.");
90034
90053
  return;
90035
90054
  }
90036
90055
  for (const unit of unitsInContext.Units) {
@@ -90138,12 +90157,12 @@ var IfcGeometryExtraction = class _IfcGeometryExtraction {
90138
90157
  } catch (ex) {
90139
90158
  if (ex instanceof Error) {
90140
90159
  if (MATERIAL_RELATED_OBJECTS_PERMISSIVE) {
90141
- Logger.error(`Error processing relatingMaterial expressID: ${relatingMaterial.expressID}, error: ${ex.message}`);
90160
+ logger_default.error(`Error processing relatingMaterial expressID: ${relatingMaterial.expressID}, error: ${ex.message}`);
90142
90161
  } else {
90143
90162
  throw ex;
90144
90163
  }
90145
90164
  } else {
90146
- Logger.error("Unknown exception processing IfcRelAssociateMaterials.");
90165
+ logger_default.error("Unknown exception processing IfcRelAssociateMaterials.");
90147
90166
  }
90148
90167
  }
90149
90168
  }
@@ -90191,11 +90210,11 @@ var IfcGeometryExtraction = class _IfcGeometryExtraction {
90191
90210
  }
90192
90211
  } catch (error) {
90193
90212
  if (error instanceof Error) {
90194
- Logger.error(`Error extracting representation item
90213
+ logger_default.error(`Error extracting representation item
90195
90214
  ${error.message}
90196
90215
  Express ID: #${item.expressID}`);
90197
90216
  } else {
90198
- Logger.error(`Error extracting representation item
90217
+ logger_default.error(`Error extracting representation item
90199
90218
  Express ID: #${item.expressID}`);
90200
90219
  }
90201
90220
  }
@@ -90234,12 +90253,12 @@ var IfcGeometryExtraction = class _IfcGeometryExtraction {
90234
90253
  }
90235
90254
  } catch (error) {
90236
90255
  if (error instanceof Error) {
90237
- Logger.error(`Error extracting representation item
90256
+ logger_default.error(`Error extracting representation item
90238
90257
  ${error.message}
90239
90258
  ${error.stack}
90240
90259
  Express ID: #${item.localID}`);
90241
90260
  } else {
90242
- Logger.error(`Unknown error extracting representation item Express ID: #${item.localID}`);
90261
+ logger_default.error(`Unknown error extracting representation item Express ID: #${item.localID}`);
90243
90262
  }
90244
90263
  }
90245
90264
  }
@@ -90297,12 +90316,12 @@ var IfcGeometryExtraction = class _IfcGeometryExtraction {
90297
90316
  }
90298
90317
  } catch (error) {
90299
90318
  if (error instanceof Error) {
90300
- Logger.error(`Error extracting rel aggregate representation item
90319
+ logger_default.error(`Error extracting rel aggregate representation item
90301
90320
  ${error.message}
90302
90321
  ${error.stack}
90303
90322
  Express ID: #${item.expressID}`);
90304
90323
  } else {
90305
- Logger.error(`Unknown error extracting rel aggregate representation item Express ID: #${item.expressID}`);
90324
+ logger_default.error(`Unknown error extracting rel aggregate representation item Express ID: #${item.expressID}`);
90306
90325
  }
90307
90326
  }
90308
90327
  }
@@ -90340,12 +90359,12 @@ var IfcGeometryExtraction = class _IfcGeometryExtraction {
90340
90359
  }
90341
90360
  } catch (error) {
90342
90361
  if (error instanceof Error) {
90343
- Logger.error(`Error extracting rel aggregate representation item
90362
+ logger_default.error(`Error extracting rel aggregate representation item
90344
90363
  ${error.message}
90345
90364
  ${error.stack}
90346
90365
  Express ID: #${item.expressID}`);
90347
90366
  } else {
90348
- Logger.error(`Unknown error extracting rel aggregate representation item Express ID: #${item.expressID}`);
90367
+ logger_default.error(`Unknown error extracting rel aggregate representation item Express ID: #${item.expressID}`);
90349
90368
  }
90350
90369
  }
90351
90370
  }
@@ -90364,14 +90383,14 @@ var IfcGeometryExtraction = class _IfcGeometryExtraction {
90364
90383
  } catch (ex) {
90365
90384
  if (ex instanceof Error) {
90366
90385
  if (MATERIAL_RELATED_OBJECTS_PERMISSIVE) {
90367
- Logger.error(`Error processing relAggregate
90386
+ logger_default.error(`Error processing relAggregate
90368
90387
  error: ${ex.message}
90369
90388
  express ID: #${relAggregate.expressID}`);
90370
90389
  } else {
90371
90390
  throw ex;
90372
90391
  }
90373
90392
  } else {
90374
- Logger.error("Unknown exception processing IfcRelAssociateMaterials.");
90393
+ logger_default.error("Unknown exception processing IfcRelAssociateMaterials.");
90375
90394
  }
90376
90395
  }
90377
90396
  }
@@ -90690,13 +90709,13 @@ var Memory = class {
90690
90709
  * @return {string} - memory usage result
90691
90710
  */
90692
90711
  static checkMemoryUsage() {
90693
- switch (Environment.environmentType) {
90712
+ switch (environment_default.environmentType) {
90694
90713
  case EnvironmentType.BROWSER:
90695
90714
  return this.checkBrowserMemory();
90696
90715
  case EnvironmentType.NODE:
90697
90716
  return this.checkNodeMemory();
90698
90717
  case EnvironmentType.BOTH_FEATURES:
90699
- Logger.info("Checking memory usage for an environment with both Node.js and Web features.");
90718
+ logger_default.info("Checking memory usage for an environment with both Node.js and Web features.");
90700
90719
  const result = `${this.checkBrowserMemory()} ${this.checkNodeMemory()}`;
90701
90720
  return result;
90702
90721
  case EnvironmentType.UNKNOWN:
@@ -90767,8 +90786,8 @@ async function main() {
90767
90786
  if (!initializationStatus) {
90768
90787
  return;
90769
90788
  }
90770
- Environment.checkEnvironment();
90771
- Logger.initializeWasmCallbacks();
90789
+ environment_default.checkEnvironment();
90790
+ logger_default.initializeWasmCallbacks();
90772
90791
  doWork();
90773
90792
  } catch (error) {
90774
90793
  console.error("An error occurred:", error);
@@ -90881,15 +90900,15 @@ function doWork() {
90881
90900
  try {
90882
90901
  indexIfcBuffer = import_fs.default.readFileSync(ifcFile);
90883
90902
  } catch (_ex) {
90884
- Logger.error("Couldn't read file, check that it is accessible at the specified path.");
90903
+ logger_default.error("Couldn't read file, check that it is accessible at the specified path.");
90885
90904
  (0, import_process.exit)();
90886
90905
  }
90887
90906
  if (indexIfcBuffer === void 0) {
90888
- Logger.error("Couldn't read file, check that it is accessible at the specified path.");
90907
+ logger_default.error("Couldn't read file, check that it is accessible at the specified path.");
90889
90908
  (0, import_process.exit)();
90890
90909
  }
90891
- Logger.createStatistics(modelID);
90892
- const parser210 = IfcStepParser.Instance;
90910
+ logger_default.createStatistics(modelID);
90911
+ const parser210 = ifc_step_parser_default.Instance;
90893
90912
  const bufferInput = new ParsingBuffer(indexIfcBuffer);
90894
90913
  const headerDataTimeStart = Date.now();
90895
90914
  const [stepHeader, result0] = parser210.parseHeader(bufferInput);
@@ -90898,16 +90917,16 @@ function doWork() {
90898
90917
  case ParseResult.COMPLETE:
90899
90918
  break;
90900
90919
  case ParseResult.INCOMPLETE:
90901
- Logger.warning("Parse incomplete but no errors");
90920
+ logger_default.warning("Parse incomplete but no errors");
90902
90921
  break;
90903
90922
  case ParseResult.INVALID_STEP:
90904
- Logger.error("Invalid STEP detected in parse, but no syntax error detected");
90923
+ logger_default.error("Invalid STEP detected in parse, but no syntax error detected");
90905
90924
  break;
90906
90925
  case ParseResult.MISSING_TYPE:
90907
- Logger.error("Missing STEP type, but no syntax error detected");
90926
+ logger_default.error("Missing STEP type, but no syntax error detected");
90908
90927
  break;
90909
90928
  case ParseResult.SYNTAX_ERROR:
90910
- Logger.error(`Syntax error detected on line ${bufferInput.lineCount}`);
90929
+ logger_default.error(`Syntax error detected on line ${bufferInput.lineCount}`);
90911
90930
  break;
90912
90931
  default:
90913
90932
  }
@@ -90918,16 +90937,16 @@ function doWork() {
90918
90937
  case ParseResult.COMPLETE:
90919
90938
  break;
90920
90939
  case ParseResult.INCOMPLETE:
90921
- Logger.warning("Parse incomplete but no errors");
90940
+ logger_default.warning("Parse incomplete but no errors");
90922
90941
  break;
90923
90942
  case ParseResult.INVALID_STEP:
90924
- Logger.error("Invalid STEP detected in parse, but no syntax error detected");
90943
+ logger_default.error("Invalid STEP detected in parse, but no syntax error detected");
90925
90944
  break;
90926
90945
  case ParseResult.MISSING_TYPE:
90927
- Logger.error("Missing STEP type, but no syntax error detected");
90946
+ logger_default.error("Missing STEP type, but no syntax error detected");
90928
90947
  break;
90929
90948
  case ParseResult.SYNTAX_ERROR:
90930
- Logger.error(`Syntax error detected on line ${bufferInput.lineCount}`);
90949
+ logger_default.error(`Syntax error detected on line ${bufferInput.lineCount}`);
90931
90950
  break;
90932
90951
  default:
90933
90952
  }
@@ -90990,8 +91009,8 @@ function doWork() {
90990
91009
  ++rowCount;
90991
91010
  }
90992
91011
  console.log("\n");
90993
- Logger.info(`Row Count: ${rowCount}`);
90994
- Logger.info(`Header parse time ${headerDataTimeEnd - headerDataTimeStart} ms`);
91012
+ logger_default.info(`Row Count: ${rowCount}`);
91013
+ logger_default.info(`Header parse time ${headerDataTimeEnd - headerDataTimeStart} ms`);
90995
91014
  }
90996
91015
  if (!geometry) {
90997
91016
  if (outputProperties) {
@@ -91000,7 +91019,7 @@ function doWork() {
91000
91019
  }
91001
91020
  const allTimeEnd = Date.now();
91002
91021
  const allTime = allTimeEnd - allTimeStart;
91003
- const statistics = Logger.getStatistics(modelID);
91022
+ const statistics = logger_default.getStatistics(modelID);
91004
91023
  if (statistics !== void 0) {
91005
91024
  const dataParseTime = parseDataTimeEnd - parseDataTimeStart;
91006
91025
  statistics.setLoadStatus("OK");
@@ -91025,8 +91044,8 @@ function doWork() {
91025
91044
  }
91026
91045
  statistics.setMemoryStatistics(Memory.checkMemoryUsage());
91027
91046
  }
91028
- Logger.displayLogs();
91029
- Logger.printStatistics(modelID);
91047
+ logger_default.displayLogs();
91048
+ logger_default.printStatistics(modelID);
91030
91049
  }).help().argv;
91031
91050
  }
91032
91051
  function serializeGeometry(scene, fileNameNoExtension, maxGeometrySize, outputGltf = false, outputGlb = false, outputGltfDraco = false, outputGlbDraco = false, includeSpaces) {
@@ -91038,7 +91057,7 @@ function serializeGeometry(scene, fileNameNoExtension, maxGeometrySize, outputGl
91038
91057
  geometryAggregator.append(scene);
91039
91058
  const aggregatedGeometry = geometryAggregator.aggregateNative();
91040
91059
  if (aggregatedGeometry.geometry.size() === 0) {
91041
- Logger.warning("No Geometry Found");
91060
+ logger_default.warning("No Geometry Found");
91042
91061
  return;
91043
91062
  }
91044
91063
  const convertor = new GeometryConvertor(conwaywasm);
@@ -91048,7 +91067,7 @@ function serializeGeometry(scene, fileNameNoExtension, maxGeometrySize, outputGl
91048
91067
  for (const glbResult of glbResults) {
91049
91068
  if (glbResult.success) {
91050
91069
  if (glbResult.buffers.size() !== glbResult.bufferUris.size()) {
91051
- Logger.error("Buffer size != Buffer URI size!\n");
91070
+ logger_default.error("Buffer size != Buffer URI size!\n");
91052
91071
  return;
91053
91072
  }
91054
91073
  for (let uriIndex = 0; uriIndex < glbResult.bufferUris.size(); uriIndex++) {
@@ -91057,11 +91076,11 @@ function serializeGeometry(scene, fileNameNoExtension, maxGeometrySize, outputGl
91057
91076
  try {
91058
91077
  import_fs.default.writeFileSync(uri, managedBuffer);
91059
91078
  } catch (err) {
91060
- Logger.error(`Error writing to file: ${err}`);
91079
+ logger_default.error(`Error writing to file: ${err}`);
91061
91080
  }
91062
91081
  }
91063
91082
  } else {
91064
- Logger.error("GLB generation unsuccessful");
91083
+ logger_default.error("GLB generation unsuccessful");
91065
91084
  }
91066
91085
  glbResult.bufferUris?.delete();
91067
91086
  glbResult.buffers?.delete();
@@ -91075,7 +91094,7 @@ function serializeGeometry(scene, fileNameNoExtension, maxGeometrySize, outputGl
91075
91094
  for (const glbDracoResult of glbDracoResults) {
91076
91095
  if (glbDracoResult.success) {
91077
91096
  if (glbDracoResult.buffers.size() !== glbDracoResult.bufferUris.size()) {
91078
- Logger.error("Buffer size != Buffer URI size!\n");
91097
+ logger_default.error("Buffer size != Buffer URI size!\n");
91079
91098
  return;
91080
91099
  }
91081
91100
  for (let uriIndex = 0; uriIndex < glbDracoResult.bufferUris.size(); uriIndex++) {
@@ -91084,7 +91103,7 @@ function serializeGeometry(scene, fileNameNoExtension, maxGeometrySize, outputGl
91084
91103
  try {
91085
91104
  import_fs.default.writeFileSync(uri, managedBuffer);
91086
91105
  } catch (err) {
91087
- Logger.error(`Error writing to file: ${err}`);
91106
+ logger_default.error(`Error writing to file: ${err}`);
91088
91107
  }
91089
91108
  }
91090
91109
  } else {
@@ -91102,7 +91121,7 @@ function serializeGeometry(scene, fileNameNoExtension, maxGeometrySize, outputGl
91102
91121
  for (const gltfResult of gltfResults) {
91103
91122
  if (gltfResult.success) {
91104
91123
  if (gltfResult.buffers.size() !== gltfResult.bufferUris.size()) {
91105
- Logger.error("Buffer size !== Buffer URI size!\n");
91124
+ logger_default.error("Buffer size !== Buffer URI size!\n");
91106
91125
  return;
91107
91126
  }
91108
91127
  for (let uriIndex = 0; uriIndex < gltfResult.bufferUris.size(); uriIndex++) {
@@ -91111,11 +91130,11 @@ function serializeGeometry(scene, fileNameNoExtension, maxGeometrySize, outputGl
91111
91130
  try {
91112
91131
  import_fs.default.writeFileSync(uri, managedBuffer);
91113
91132
  } catch (err) {
91114
- Logger.error(`Error writing to file: ${err}`);
91133
+ logger_default.error(`Error writing to file: ${err}`);
91115
91134
  }
91116
91135
  }
91117
91136
  } else {
91118
- Logger.error("GLTF generation unsuccessful");
91137
+ logger_default.error("GLTF generation unsuccessful");
91119
91138
  }
91120
91139
  gltfResult.bufferUris?.delete();
91121
91140
  gltfResult.buffers?.delete();
@@ -91129,7 +91148,7 @@ function serializeGeometry(scene, fileNameNoExtension, maxGeometrySize, outputGl
91129
91148
  for (const gltfResultDraco of gltfResultsDraco) {
91130
91149
  if (gltfResultDraco.success) {
91131
91150
  if (gltfResultDraco.buffers.size() !== gltfResultDraco.bufferUris.size()) {
91132
- Logger.error("Buffer size !== Buffer URI size!\n");
91151
+ logger_default.error("Buffer size !== Buffer URI size!\n");
91133
91152
  return;
91134
91153
  }
91135
91154
  for (let uriIndex = 0; uriIndex < gltfResultDraco.bufferUris.size(); uriIndex++) {
@@ -91138,11 +91157,11 @@ function serializeGeometry(scene, fileNameNoExtension, maxGeometrySize, outputGl
91138
91157
  try {
91139
91158
  import_fs.default.writeFileSync(uri, managedBuffer);
91140
91159
  } catch (err) {
91141
- Logger.error(`Error writing to file: ${err}`);
91160
+ logger_default.error(`Error writing to file: ${err}`);
91142
91161
  }
91143
91162
  }
91144
91163
  } else {
91145
- Logger.error("Draco GLTF generation unsuccessful");
91164
+ logger_default.error("Draco GLTF generation unsuccessful");
91146
91165
  }
91147
91166
  gltfResultDraco.bufferUris?.delete();
91148
91167
  gltfResultDraco.buffers?.delete();
@@ -91152,15 +91171,15 @@ function serializeGeometry(scene, fileNameNoExtension, maxGeometrySize, outputGl
91152
91171
  }
91153
91172
  aggregatedGeometry.geometry.delete();
91154
91173
  aggregatedGeometry.materials.delete();
91155
- Logger.info(`There were ${aggregatedGeometry.chunks.length} geometry chunks`);
91174
+ logger_default.info(`There were ${aggregatedGeometry.chunks.length} geometry chunks`);
91156
91175
  if (outputGlb)
91157
- Logger.info(`GLB Generation took ${executionTimeInMsGlb} milliseconds to execute.`);
91176
+ logger_default.info(`GLB Generation took ${executionTimeInMsGlb} milliseconds to execute.`);
91158
91177
  if (outputGltf)
91159
- Logger.info(`GLTF Generation took ${executionTimeInMsGltf} milliseconds to execute.`);
91178
+ logger_default.info(`GLTF Generation took ${executionTimeInMsGltf} milliseconds to execute.`);
91160
91179
  if (outputGlbDraco)
91161
- Logger.info(`GLB Draco Generation took ${executionTimeInMsGlbDraco} milliseconds to execute.`);
91180
+ logger_default.info(`GLB Draco Generation took ${executionTimeInMsGlbDraco} milliseconds to execute.`);
91162
91181
  if (outputGltfDraco)
91163
- Logger.info(`GLTF Draco Generation took ${executionTimeInMsGltfDraco} milliseconds to execute.`);
91182
+ logger_default.info(`GLTF Draco Generation took ${executionTimeInMsGltfDraco} milliseconds to execute.`);
91164
91183
  }
91165
91184
  function propertyExtraction(model) {
91166
91185
  IfcPropertyExtraction.extractIFCProperties(model, true);
@@ -91171,7 +91190,7 @@ function geometryExtraction(model, limitCSGDepth = true, maxCSGDepth = 20) {
91171
91190
  const [extractionResult, scene] = conwayModel.extractIFCGeometryData();
91172
91191
  const endTime = Date.now();
91173
91192
  const executionTimeInMs = endTime - startTime;
91174
- const statistics = Logger.getStatistics(modelID);
91193
+ const statistics = logger_default.getStatistics(modelID);
91175
91194
  statistics?.setGeometryTime(executionTimeInMs);
91176
91195
  const ONE_KB = 1024;
91177
91196
  const ONE_MB = ONE_KB * ONE_KB;