occam-verify-cli 0.0.1092 → 0.0.1094
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/assertion/contained.js +18 -16
- package/lib/combinator/bracketed.js +12 -5
- package/lib/constructor/bracketed.js +12 -5
- package/lib/index.js +2 -2
- package/lib/metavariable.js +9 -9
- package/lib/mixins/statement/qualified/unify.js +4 -4
- package/lib/mixins/statement/resolve.js +3 -3
- package/lib/nodeAndTokens/metavariable.js +193 -0
- package/lib/nodeAndTokens/statement.js +193 -0
- package/lib/nodeAndTokens/substitution/frame.js +159 -0
- package/lib/nodeAndTokens/substitution/statement.js +159 -0
- package/lib/nodeAndTokens/substitution/term.js +159 -0
- package/lib/nodeAndTokens/term.js +193 -0
- package/lib/nodeAndTokens/variable.js +193 -0
- package/lib/nodeAndTokens.js +93 -0
- package/lib/statement/unqualified.js +4 -4
- package/lib/statement.js +3 -4
- package/lib/substitution/frame.js +208 -0
- package/lib/substitution/statement.js +318 -0
- package/lib/substitution/term.js +202 -0
- package/lib/substitution.js +1 -8
- package/lib/substitutions.js +1 -13
- package/lib/term.js +3 -3
- package/lib/unifier/metaLevel.js +4 -4
- package/lib/unifier/termWithConstructor.js +6 -6
- package/lib/utilities/json.js +2 -2
- package/lib/utilities/substitutions.js +6 -21
- package/lib/variable.js +5 -5
- package/package.json +3 -1
- package/src/assertion/contained.js +17 -15
- package/src/combinator/bracketed.js +18 -13
- package/src/constructor/bracketed.js +19 -14
- package/src/index.js +1 -1
- package/src/metavariable.js +10 -11
- package/src/mixins/statement/qualified/unify.js +5 -5
- package/src/mixins/statement/resolve.js +4 -4
- package/src/nodeAndTokens/metavariable.js +49 -0
- package/src/nodeAndTokens/statement.js +49 -0
- package/src/nodeAndTokens/substitution/frame.js +23 -0
- package/src/nodeAndTokens/substitution/statement.js +23 -0
- package/src/nodeAndTokens/substitution/term.js +23 -0
- package/src/nodeAndTokens/term.js +49 -0
- package/src/nodeAndTokens/variable.js +49 -0
- package/src/nodeAndTokens.js +78 -0
- package/src/statement/unqualified.js +6 -3
- package/src/statement.js +5 -13
- package/src/substitution/{frameForMetavariable.js → frame.js} +21 -31
- package/src/substitution/{statementForMetavariable.js → statement.js} +59 -65
- package/src/substitution/{termForVariable.js → term.js} +21 -31
- package/src/substitution.js +0 -6
- package/src/substitutions.js +0 -12
- package/src/term.js +3 -4
- package/src/unifier/metaLevel.js +5 -5
- package/src/unifier/termWithConstructor.js +5 -5
- package/src/utilities/json.js +3 -2
- package/src/utilities/substitutions.js +7 -23
- package/src/variable.js +7 -8
- package/lib/ruleNames.js +0 -30
- package/lib/substitution/frameForMetavariable.js +0 -209
- package/lib/substitution/statementForMetavariable.js +0 -314
- package/lib/substitution/termForVariable.js +0 -203
- package/lib/utilities/node.js +0 -113
- package/lib/utilities/tokens.js +0 -69
- package/src/ruleNames.js +0 -6
- package/src/utilities/node.js +0 -114
- package/src/utilities/tokens.js +0 -63
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", {
|
|
3
|
+
value: true
|
|
4
|
+
});
|
|
5
|
+
Object.defineProperty(exports, "default", {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: function() {
|
|
8
|
+
return StatementSubstitutionNodeAndTokens;
|
|
9
|
+
}
|
|
10
|
+
});
|
|
11
|
+
var _nodeAndTokens = /*#__PURE__*/ _interop_require_wildcard(require("../../nodeAndTokens"));
|
|
12
|
+
function _assert_this_initialized(self) {
|
|
13
|
+
if (self === void 0) {
|
|
14
|
+
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
15
|
+
}
|
|
16
|
+
return self;
|
|
17
|
+
}
|
|
18
|
+
function _call_super(_this, derived, args) {
|
|
19
|
+
derived = _get_prototype_of(derived);
|
|
20
|
+
return _possible_constructor_return(_this, _is_native_reflect_construct() ? Reflect.construct(derived, args || [], _get_prototype_of(_this).constructor) : derived.apply(_this, args));
|
|
21
|
+
}
|
|
22
|
+
function _class_call_check(instance, Constructor) {
|
|
23
|
+
if (!(instance instanceof Constructor)) {
|
|
24
|
+
throw new TypeError("Cannot call a class as a function");
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
function _defineProperties(target, props) {
|
|
28
|
+
for(var i = 0; i < props.length; i++){
|
|
29
|
+
var descriptor = props[i];
|
|
30
|
+
descriptor.enumerable = descriptor.enumerable || false;
|
|
31
|
+
descriptor.configurable = true;
|
|
32
|
+
if ("value" in descriptor) descriptor.writable = true;
|
|
33
|
+
Object.defineProperty(target, descriptor.key, descriptor);
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
function _create_class(Constructor, protoProps, staticProps) {
|
|
37
|
+
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
|
|
38
|
+
if (staticProps) _defineProperties(Constructor, staticProps);
|
|
39
|
+
return Constructor;
|
|
40
|
+
}
|
|
41
|
+
function _define_property(obj, key, value) {
|
|
42
|
+
if (key in obj) {
|
|
43
|
+
Object.defineProperty(obj, key, {
|
|
44
|
+
value: value,
|
|
45
|
+
enumerable: true,
|
|
46
|
+
configurable: true,
|
|
47
|
+
writable: true
|
|
48
|
+
});
|
|
49
|
+
} else {
|
|
50
|
+
obj[key] = value;
|
|
51
|
+
}
|
|
52
|
+
return obj;
|
|
53
|
+
}
|
|
54
|
+
function _get_prototype_of(o) {
|
|
55
|
+
_get_prototype_of = Object.setPrototypeOf ? Object.getPrototypeOf : function getPrototypeOf(o) {
|
|
56
|
+
return o.__proto__ || Object.getPrototypeOf(o);
|
|
57
|
+
};
|
|
58
|
+
return _get_prototype_of(o);
|
|
59
|
+
}
|
|
60
|
+
function _inherits(subClass, superClass) {
|
|
61
|
+
if (typeof superClass !== "function" && superClass !== null) {
|
|
62
|
+
throw new TypeError("Super expression must either be null or a function");
|
|
63
|
+
}
|
|
64
|
+
subClass.prototype = Object.create(superClass && superClass.prototype, {
|
|
65
|
+
constructor: {
|
|
66
|
+
value: subClass,
|
|
67
|
+
writable: true,
|
|
68
|
+
configurable: true
|
|
69
|
+
}
|
|
70
|
+
});
|
|
71
|
+
if (superClass) _set_prototype_of(subClass, superClass);
|
|
72
|
+
}
|
|
73
|
+
function _getRequireWildcardCache(nodeInterop) {
|
|
74
|
+
if (typeof WeakMap !== "function") return null;
|
|
75
|
+
var cacheBabelInterop = new WeakMap();
|
|
76
|
+
var cacheNodeInterop = new WeakMap();
|
|
77
|
+
return (_getRequireWildcardCache = function(nodeInterop) {
|
|
78
|
+
return nodeInterop ? cacheNodeInterop : cacheBabelInterop;
|
|
79
|
+
})(nodeInterop);
|
|
80
|
+
}
|
|
81
|
+
function _interop_require_wildcard(obj, nodeInterop) {
|
|
82
|
+
if (!nodeInterop && obj && obj.__esModule) {
|
|
83
|
+
return obj;
|
|
84
|
+
}
|
|
85
|
+
if (obj === null || typeof obj !== "object" && typeof obj !== "function") {
|
|
86
|
+
return {
|
|
87
|
+
default: obj
|
|
88
|
+
};
|
|
89
|
+
}
|
|
90
|
+
var cache = _getRequireWildcardCache(nodeInterop);
|
|
91
|
+
if (cache && cache.has(obj)) {
|
|
92
|
+
return cache.get(obj);
|
|
93
|
+
}
|
|
94
|
+
var newObj = {
|
|
95
|
+
__proto__: null
|
|
96
|
+
};
|
|
97
|
+
var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor;
|
|
98
|
+
for(var key in obj){
|
|
99
|
+
if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) {
|
|
100
|
+
var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null;
|
|
101
|
+
if (desc && (desc.get || desc.set)) {
|
|
102
|
+
Object.defineProperty(newObj, key, desc);
|
|
103
|
+
} else {
|
|
104
|
+
newObj[key] = obj[key];
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
newObj.default = obj;
|
|
109
|
+
if (cache) {
|
|
110
|
+
cache.set(obj, newObj);
|
|
111
|
+
}
|
|
112
|
+
return newObj;
|
|
113
|
+
}
|
|
114
|
+
function _possible_constructor_return(self, call) {
|
|
115
|
+
if (call && (_type_of(call) === "object" || typeof call === "function")) {
|
|
116
|
+
return call;
|
|
117
|
+
}
|
|
118
|
+
return _assert_this_initialized(self);
|
|
119
|
+
}
|
|
120
|
+
function _set_prototype_of(o, p) {
|
|
121
|
+
_set_prototype_of = Object.setPrototypeOf || function setPrototypeOf(o, p) {
|
|
122
|
+
o.__proto__ = p;
|
|
123
|
+
return o;
|
|
124
|
+
};
|
|
125
|
+
return _set_prototype_of(o, p);
|
|
126
|
+
}
|
|
127
|
+
function _type_of(obj) {
|
|
128
|
+
"@swc/helpers - typeof";
|
|
129
|
+
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
130
|
+
}
|
|
131
|
+
function _is_native_reflect_construct() {
|
|
132
|
+
try {
|
|
133
|
+
var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
134
|
+
} catch (_) {}
|
|
135
|
+
return (_is_native_reflect_construct = function() {
|
|
136
|
+
return !!result;
|
|
137
|
+
})();
|
|
138
|
+
}
|
|
139
|
+
var bnf = "\n\n _ ::= statementSubstitution... <END_OF_LINE> ;\n \n ", rule = (0, _nodeAndTokens.ruleFromBNF)(bnf);
|
|
140
|
+
var StatementSubstitutionNodeAndTokens = /*#__PURE__*/ function(NodeAndTokens) {
|
|
141
|
+
_inherits(StatementSubstitutionNodeAndTokens, NodeAndTokens);
|
|
142
|
+
function StatementSubstitutionNodeAndTokens() {
|
|
143
|
+
_class_call_check(this, StatementSubstitutionNodeAndTokens);
|
|
144
|
+
return _call_super(this, StatementSubstitutionNodeAndTokens, arguments);
|
|
145
|
+
}
|
|
146
|
+
_create_class(StatementSubstitutionNodeAndTokens, null, [
|
|
147
|
+
{
|
|
148
|
+
key: "fromStatementSubstitutionString",
|
|
149
|
+
value: function fromStatementSubstitutionString(statementSubstitutionString, context) {
|
|
150
|
+
var string = statementSubstitutionString, statementSubstitutionNodeAndTokens = _nodeAndTokens.default.fromString(StatementSubstitutionNodeAndTokens, string, context);
|
|
151
|
+
return statementSubstitutionNodeAndTokens;
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
]);
|
|
155
|
+
return StatementSubstitutionNodeAndTokens;
|
|
156
|
+
}(_nodeAndTokens.default);
|
|
157
|
+
_define_property(StatementSubstitutionNodeAndTokens, "rule", rule);
|
|
158
|
+
|
|
159
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9ub2RlQW5kVG9rZW5zL3N1YnN0aXR1dGlvbi9zdGF0ZW1lbnQuanMiXSwic291cmNlc0NvbnRlbnQiOlsiXCJ1c2Ugc3RyaWN0XCI7XG5cbmltcG9ydCBOb2RlQW5kVG9rZW5zIGZyb20gXCIuLi8uLi9ub2RlQW5kVG9rZW5zXCI7XG5cbmltcG9ydCB7IHJ1bGVGcm9tQk5GIH0gZnJvbSBcIi4uLy4uL25vZGVBbmRUb2tlbnNcIjtcblxuY29uc3QgYm5mID0gYFxuXG4gICAgICAgICAgICBfIDo6PSBzdGF0ZW1lbnRTdWJzdGl0dXRpb24uLi4gPEVORF9PRl9MSU5FPiA7XG4gICAgICAgICAgICBcbiAgICAgIGAsXG4gICAgICBydWxlID0gcnVsZUZyb21CTkYoYm5mKTtcblxuZXhwb3J0IGRlZmF1bHQgY2xhc3MgU3RhdGVtZW50U3Vic3RpdHV0aW9uTm9kZUFuZFRva2VucyBleHRlbmRzIE5vZGVBbmRUb2tlbnMge1xuICBzdGF0aWMgcnVsZSA9IHJ1bGU7XG5cbiAgc3RhdGljIGZyb21TdGF0ZW1lbnRTdWJzdGl0dXRpb25TdHJpbmcoc3RhdGVtZW50U3Vic3RpdHV0aW9uU3RyaW5nLCBjb250ZXh0KSB7XG4gICAgY29uc3Qgc3RyaW5nID0gc3RhdGVtZW50U3Vic3RpdHV0aW9uU3RyaW5nLCAvLy9cbiAgICAgICAgICBzdGF0ZW1lbnRTdWJzdGl0dXRpb25Ob2RlQW5kVG9rZW5zID0gTm9kZUFuZFRva2Vucy5mcm9tU3RyaW5nKFN0YXRlbWVudFN1YnN0aXR1dGlvbk5vZGVBbmRUb2tlbnMsIHN0cmluZywgY29udGV4dCk7XG5cbiAgICByZXR1cm4gc3RhdGVtZW50U3Vic3RpdHV0aW9uTm9kZUFuZFRva2VucztcbiAgfVxufVxuIl0sIm5hbWVzIjpbIlN0YXRlbWVudFN1YnN0aXR1dGlvbk5vZGVBbmRUb2tlbnMiLCJibmYiLCJydWxlIiwicnVsZUZyb21CTkYiLCJmcm9tU3RhdGVtZW50U3Vic3RpdHV0aW9uU3RyaW5nIiwic3RhdGVtZW50U3Vic3RpdHV0aW9uU3RyaW5nIiwiY29udGV4dCIsInN0cmluZyIsInN0YXRlbWVudFN1YnN0aXR1dGlvbk5vZGVBbmRUb2tlbnMiLCJOb2RlQW5kVG9rZW5zIiwiZnJvbVN0cmluZyJdLCJtYXBwaW5ncyI6IkFBQUE7Ozs7Ozs7ZUFhcUJBOzs7cUVBWEs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBSTFCLElBQU1DLE1BQU8sd0ZBS1BDLE9BQU9DLElBQUFBLDBCQUFXLEVBQUNGO0FBRVYsSUFBQSxBQUFNRCxtREFBTjtjQUFNQTthQUFBQTtnQ0FBQUE7aUNBQUFBOztrQkFBQUE7O1lBR1pJLEtBQUFBO21CQUFQLFNBQU9BLGdDQUFnQ0MsMkJBQTJCLEVBQUVDLE9BQU87Z0JBQ3pFLElBQU1DLFNBQVNGLDZCQUNURyxxQ0FBcUNDLHNCQUFhLENBQUNDLFVBQVUsQ0FMbERWLG9DQUt1Rk8sUUFBUUQ7Z0JBRWhILE9BQU9FO1lBQ1Q7OztXQVJtQlI7RUFBMkNTLHNCQUFhO0FBQzNFLGlCQURtQlQsb0NBQ1pFLFFBQU9BIn0=
|
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", {
|
|
3
|
+
value: true
|
|
4
|
+
});
|
|
5
|
+
Object.defineProperty(exports, "default", {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: function() {
|
|
8
|
+
return TermSubstitutionNodeAndTokens;
|
|
9
|
+
}
|
|
10
|
+
});
|
|
11
|
+
var _nodeAndTokens = /*#__PURE__*/ _interop_require_wildcard(require("../../nodeAndTokens"));
|
|
12
|
+
function _assert_this_initialized(self) {
|
|
13
|
+
if (self === void 0) {
|
|
14
|
+
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
15
|
+
}
|
|
16
|
+
return self;
|
|
17
|
+
}
|
|
18
|
+
function _call_super(_this, derived, args) {
|
|
19
|
+
derived = _get_prototype_of(derived);
|
|
20
|
+
return _possible_constructor_return(_this, _is_native_reflect_construct() ? Reflect.construct(derived, args || [], _get_prototype_of(_this).constructor) : derived.apply(_this, args));
|
|
21
|
+
}
|
|
22
|
+
function _class_call_check(instance, Constructor) {
|
|
23
|
+
if (!(instance instanceof Constructor)) {
|
|
24
|
+
throw new TypeError("Cannot call a class as a function");
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
function _defineProperties(target, props) {
|
|
28
|
+
for(var i = 0; i < props.length; i++){
|
|
29
|
+
var descriptor = props[i];
|
|
30
|
+
descriptor.enumerable = descriptor.enumerable || false;
|
|
31
|
+
descriptor.configurable = true;
|
|
32
|
+
if ("value" in descriptor) descriptor.writable = true;
|
|
33
|
+
Object.defineProperty(target, descriptor.key, descriptor);
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
function _create_class(Constructor, protoProps, staticProps) {
|
|
37
|
+
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
|
|
38
|
+
if (staticProps) _defineProperties(Constructor, staticProps);
|
|
39
|
+
return Constructor;
|
|
40
|
+
}
|
|
41
|
+
function _define_property(obj, key, value) {
|
|
42
|
+
if (key in obj) {
|
|
43
|
+
Object.defineProperty(obj, key, {
|
|
44
|
+
value: value,
|
|
45
|
+
enumerable: true,
|
|
46
|
+
configurable: true,
|
|
47
|
+
writable: true
|
|
48
|
+
});
|
|
49
|
+
} else {
|
|
50
|
+
obj[key] = value;
|
|
51
|
+
}
|
|
52
|
+
return obj;
|
|
53
|
+
}
|
|
54
|
+
function _get_prototype_of(o) {
|
|
55
|
+
_get_prototype_of = Object.setPrototypeOf ? Object.getPrototypeOf : function getPrototypeOf(o) {
|
|
56
|
+
return o.__proto__ || Object.getPrototypeOf(o);
|
|
57
|
+
};
|
|
58
|
+
return _get_prototype_of(o);
|
|
59
|
+
}
|
|
60
|
+
function _inherits(subClass, superClass) {
|
|
61
|
+
if (typeof superClass !== "function" && superClass !== null) {
|
|
62
|
+
throw new TypeError("Super expression must either be null or a function");
|
|
63
|
+
}
|
|
64
|
+
subClass.prototype = Object.create(superClass && superClass.prototype, {
|
|
65
|
+
constructor: {
|
|
66
|
+
value: subClass,
|
|
67
|
+
writable: true,
|
|
68
|
+
configurable: true
|
|
69
|
+
}
|
|
70
|
+
});
|
|
71
|
+
if (superClass) _set_prototype_of(subClass, superClass);
|
|
72
|
+
}
|
|
73
|
+
function _getRequireWildcardCache(nodeInterop) {
|
|
74
|
+
if (typeof WeakMap !== "function") return null;
|
|
75
|
+
var cacheBabelInterop = new WeakMap();
|
|
76
|
+
var cacheNodeInterop = new WeakMap();
|
|
77
|
+
return (_getRequireWildcardCache = function(nodeInterop) {
|
|
78
|
+
return nodeInterop ? cacheNodeInterop : cacheBabelInterop;
|
|
79
|
+
})(nodeInterop);
|
|
80
|
+
}
|
|
81
|
+
function _interop_require_wildcard(obj, nodeInterop) {
|
|
82
|
+
if (!nodeInterop && obj && obj.__esModule) {
|
|
83
|
+
return obj;
|
|
84
|
+
}
|
|
85
|
+
if (obj === null || typeof obj !== "object" && typeof obj !== "function") {
|
|
86
|
+
return {
|
|
87
|
+
default: obj
|
|
88
|
+
};
|
|
89
|
+
}
|
|
90
|
+
var cache = _getRequireWildcardCache(nodeInterop);
|
|
91
|
+
if (cache && cache.has(obj)) {
|
|
92
|
+
return cache.get(obj);
|
|
93
|
+
}
|
|
94
|
+
var newObj = {
|
|
95
|
+
__proto__: null
|
|
96
|
+
};
|
|
97
|
+
var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor;
|
|
98
|
+
for(var key in obj){
|
|
99
|
+
if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) {
|
|
100
|
+
var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null;
|
|
101
|
+
if (desc && (desc.get || desc.set)) {
|
|
102
|
+
Object.defineProperty(newObj, key, desc);
|
|
103
|
+
} else {
|
|
104
|
+
newObj[key] = obj[key];
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
newObj.default = obj;
|
|
109
|
+
if (cache) {
|
|
110
|
+
cache.set(obj, newObj);
|
|
111
|
+
}
|
|
112
|
+
return newObj;
|
|
113
|
+
}
|
|
114
|
+
function _possible_constructor_return(self, call) {
|
|
115
|
+
if (call && (_type_of(call) === "object" || typeof call === "function")) {
|
|
116
|
+
return call;
|
|
117
|
+
}
|
|
118
|
+
return _assert_this_initialized(self);
|
|
119
|
+
}
|
|
120
|
+
function _set_prototype_of(o, p) {
|
|
121
|
+
_set_prototype_of = Object.setPrototypeOf || function setPrototypeOf(o, p) {
|
|
122
|
+
o.__proto__ = p;
|
|
123
|
+
return o;
|
|
124
|
+
};
|
|
125
|
+
return _set_prototype_of(o, p);
|
|
126
|
+
}
|
|
127
|
+
function _type_of(obj) {
|
|
128
|
+
"@swc/helpers - typeof";
|
|
129
|
+
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
130
|
+
}
|
|
131
|
+
function _is_native_reflect_construct() {
|
|
132
|
+
try {
|
|
133
|
+
var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
134
|
+
} catch (_) {}
|
|
135
|
+
return (_is_native_reflect_construct = function() {
|
|
136
|
+
return !!result;
|
|
137
|
+
})();
|
|
138
|
+
}
|
|
139
|
+
var bnf = "\n\n _ ::= termSubstitution... <END_OF_LINE> ;\n \n ", rule = (0, _nodeAndTokens.ruleFromBNF)(bnf);
|
|
140
|
+
var TermSubstitutionNodeAndTokens = /*#__PURE__*/ function(NodeAndTokens) {
|
|
141
|
+
_inherits(TermSubstitutionNodeAndTokens, NodeAndTokens);
|
|
142
|
+
function TermSubstitutionNodeAndTokens() {
|
|
143
|
+
_class_call_check(this, TermSubstitutionNodeAndTokens);
|
|
144
|
+
return _call_super(this, TermSubstitutionNodeAndTokens, arguments);
|
|
145
|
+
}
|
|
146
|
+
_create_class(TermSubstitutionNodeAndTokens, null, [
|
|
147
|
+
{
|
|
148
|
+
key: "fromTermSubstitutionString",
|
|
149
|
+
value: function fromTermSubstitutionString(termSubstitutionString, context) {
|
|
150
|
+
var string = termSubstitutionString, termSubstitutionNodeAndTokens = _nodeAndTokens.default.fromString(TermSubstitutionNodeAndTokens, string, context);
|
|
151
|
+
return termSubstitutionNodeAndTokens;
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
]);
|
|
155
|
+
return TermSubstitutionNodeAndTokens;
|
|
156
|
+
}(_nodeAndTokens.default);
|
|
157
|
+
_define_property(TermSubstitutionNodeAndTokens, "rule", rule);
|
|
158
|
+
|
|
159
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9ub2RlQW5kVG9rZW5zL3N1YnN0aXR1dGlvbi90ZXJtLmpzIl0sInNvdXJjZXNDb250ZW50IjpbIlwidXNlIHN0cmljdFwiO1xuXG5pbXBvcnQgTm9kZUFuZFRva2VucyBmcm9tIFwiLi4vLi4vbm9kZUFuZFRva2Vuc1wiO1xuXG5pbXBvcnQgeyBydWxlRnJvbUJORiB9IGZyb20gXCIuLi8uLi9ub2RlQW5kVG9rZW5zXCI7XG5cbmNvbnN0IGJuZiA9IGBcblxuICAgICAgICAgICAgXyA6Oj0gdGVybVN1YnN0aXR1dGlvbi4uLiA8RU5EX09GX0xJTkU+IDtcbiAgICAgICAgICAgIFxuICAgICAgYCxcbiAgICAgIHJ1bGUgPSBydWxlRnJvbUJORihibmYpO1xuXG5leHBvcnQgZGVmYXVsdCBjbGFzcyBUZXJtU3Vic3RpdHV0aW9uTm9kZUFuZFRva2VucyBleHRlbmRzIE5vZGVBbmRUb2tlbnMge1xuICBzdGF0aWMgcnVsZSA9IHJ1bGU7XG5cbiAgc3RhdGljIGZyb21UZXJtU3Vic3RpdHV0aW9uU3RyaW5nKHRlcm1TdWJzdGl0dXRpb25TdHJpbmcsIGNvbnRleHQpIHtcbiAgICBjb25zdCBzdHJpbmcgPSB0ZXJtU3Vic3RpdHV0aW9uU3RyaW5nLCAgLy8vXG4gICAgICAgICAgdGVybVN1YnN0aXR1dGlvbk5vZGVBbmRUb2tlbnMgPSBOb2RlQW5kVG9rZW5zLmZyb21TdHJpbmcoVGVybVN1YnN0aXR1dGlvbk5vZGVBbmRUb2tlbnMsIHN0cmluZywgY29udGV4dCk7XG5cbiAgICByZXR1cm4gdGVybVN1YnN0aXR1dGlvbk5vZGVBbmRUb2tlbnM7XG4gIH1cbn1cbiJdLCJuYW1lcyI6WyJUZXJtU3Vic3RpdHV0aW9uTm9kZUFuZFRva2VucyIsImJuZiIsInJ1bGUiLCJydWxlRnJvbUJORiIsImZyb21UZXJtU3Vic3RpdHV0aW9uU3RyaW5nIiwidGVybVN1YnN0aXR1dGlvblN0cmluZyIsImNvbnRleHQiLCJzdHJpbmciLCJ0ZXJtU3Vic3RpdHV0aW9uTm9kZUFuZFRva2VucyIsIk5vZGVBbmRUb2tlbnMiLCJmcm9tU3RyaW5nIl0sIm1hcHBpbmdzIjoiQUFBQTs7Ozs7OztlQWFxQkE7OztxRUFYSzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7QUFJMUIsSUFBTUMsTUFBTyxtRkFLUEMsT0FBT0MsSUFBQUEsMEJBQVcsRUFBQ0Y7QUFFVixJQUFBLEFBQU1ELDhDQUFOO2NBQU1BO2FBQUFBO2dDQUFBQTtpQ0FBQUE7O2tCQUFBQTs7WUFHWkksS0FBQUE7bUJBQVAsU0FBT0EsMkJBQTJCQyxzQkFBc0IsRUFBRUMsT0FBTztnQkFDL0QsSUFBTUMsU0FBU0Ysd0JBQ1RHLGdDQUFnQ0Msc0JBQWEsQ0FBQ0MsVUFBVSxDQUw3Q1YsK0JBSzZFTyxRQUFRRDtnQkFFdEcsT0FBT0U7WUFDVDs7O1dBUm1CUjtFQUFzQ1Msc0JBQWE7QUFDdEUsaUJBRG1CVCwrQkFDWkUsUUFBT0EifQ==
|
|
@@ -0,0 +1,193 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", {
|
|
3
|
+
value: true
|
|
4
|
+
});
|
|
5
|
+
function _export(target, all) {
|
|
6
|
+
for(var name in all)Object.defineProperty(target, name, {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: all[name]
|
|
9
|
+
});
|
|
10
|
+
}
|
|
11
|
+
_export(exports, {
|
|
12
|
+
default: function() {
|
|
13
|
+
return TermNodeAndTokens;
|
|
14
|
+
},
|
|
15
|
+
termNodeFromTermString: function() {
|
|
16
|
+
return termNodeFromTermString;
|
|
17
|
+
}
|
|
18
|
+
});
|
|
19
|
+
var _nodeAndTokens = /*#__PURE__*/ _interop_require_wildcard(require("../nodeAndTokens"));
|
|
20
|
+
function _assert_this_initialized(self) {
|
|
21
|
+
if (self === void 0) {
|
|
22
|
+
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
23
|
+
}
|
|
24
|
+
return self;
|
|
25
|
+
}
|
|
26
|
+
function _call_super(_this, derived, args) {
|
|
27
|
+
derived = _get_prototype_of(derived);
|
|
28
|
+
return _possible_constructor_return(_this, _is_native_reflect_construct() ? Reflect.construct(derived, args || [], _get_prototype_of(_this).constructor) : derived.apply(_this, args));
|
|
29
|
+
}
|
|
30
|
+
function _class_call_check(instance, Constructor) {
|
|
31
|
+
if (!(instance instanceof Constructor)) {
|
|
32
|
+
throw new TypeError("Cannot call a class as a function");
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
function _defineProperties(target, props) {
|
|
36
|
+
for(var i = 0; i < props.length; i++){
|
|
37
|
+
var descriptor = props[i];
|
|
38
|
+
descriptor.enumerable = descriptor.enumerable || false;
|
|
39
|
+
descriptor.configurable = true;
|
|
40
|
+
if ("value" in descriptor) descriptor.writable = true;
|
|
41
|
+
Object.defineProperty(target, descriptor.key, descriptor);
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
function _create_class(Constructor, protoProps, staticProps) {
|
|
45
|
+
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
|
|
46
|
+
if (staticProps) _defineProperties(Constructor, staticProps);
|
|
47
|
+
return Constructor;
|
|
48
|
+
}
|
|
49
|
+
function _define_property(obj, key, value) {
|
|
50
|
+
if (key in obj) {
|
|
51
|
+
Object.defineProperty(obj, key, {
|
|
52
|
+
value: value,
|
|
53
|
+
enumerable: true,
|
|
54
|
+
configurable: true,
|
|
55
|
+
writable: true
|
|
56
|
+
});
|
|
57
|
+
} else {
|
|
58
|
+
obj[key] = value;
|
|
59
|
+
}
|
|
60
|
+
return obj;
|
|
61
|
+
}
|
|
62
|
+
function _get_prototype_of(o) {
|
|
63
|
+
_get_prototype_of = Object.setPrototypeOf ? Object.getPrototypeOf : function getPrototypeOf(o) {
|
|
64
|
+
return o.__proto__ || Object.getPrototypeOf(o);
|
|
65
|
+
};
|
|
66
|
+
return _get_prototype_of(o);
|
|
67
|
+
}
|
|
68
|
+
function _inherits(subClass, superClass) {
|
|
69
|
+
if (typeof superClass !== "function" && superClass !== null) {
|
|
70
|
+
throw new TypeError("Super expression must either be null or a function");
|
|
71
|
+
}
|
|
72
|
+
subClass.prototype = Object.create(superClass && superClass.prototype, {
|
|
73
|
+
constructor: {
|
|
74
|
+
value: subClass,
|
|
75
|
+
writable: true,
|
|
76
|
+
configurable: true
|
|
77
|
+
}
|
|
78
|
+
});
|
|
79
|
+
if (superClass) _set_prototype_of(subClass, superClass);
|
|
80
|
+
}
|
|
81
|
+
function _getRequireWildcardCache(nodeInterop) {
|
|
82
|
+
if (typeof WeakMap !== "function") return null;
|
|
83
|
+
var cacheBabelInterop = new WeakMap();
|
|
84
|
+
var cacheNodeInterop = new WeakMap();
|
|
85
|
+
return (_getRequireWildcardCache = function(nodeInterop) {
|
|
86
|
+
return nodeInterop ? cacheNodeInterop : cacheBabelInterop;
|
|
87
|
+
})(nodeInterop);
|
|
88
|
+
}
|
|
89
|
+
function _interop_require_wildcard(obj, nodeInterop) {
|
|
90
|
+
if (!nodeInterop && obj && obj.__esModule) {
|
|
91
|
+
return obj;
|
|
92
|
+
}
|
|
93
|
+
if (obj === null || typeof obj !== "object" && typeof obj !== "function") {
|
|
94
|
+
return {
|
|
95
|
+
default: obj
|
|
96
|
+
};
|
|
97
|
+
}
|
|
98
|
+
var cache = _getRequireWildcardCache(nodeInterop);
|
|
99
|
+
if (cache && cache.has(obj)) {
|
|
100
|
+
return cache.get(obj);
|
|
101
|
+
}
|
|
102
|
+
var newObj = {
|
|
103
|
+
__proto__: null
|
|
104
|
+
};
|
|
105
|
+
var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor;
|
|
106
|
+
for(var key in obj){
|
|
107
|
+
if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) {
|
|
108
|
+
var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null;
|
|
109
|
+
if (desc && (desc.get || desc.set)) {
|
|
110
|
+
Object.defineProperty(newObj, key, desc);
|
|
111
|
+
} else {
|
|
112
|
+
newObj[key] = obj[key];
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
newObj.default = obj;
|
|
117
|
+
if (cache) {
|
|
118
|
+
cache.set(obj, newObj);
|
|
119
|
+
}
|
|
120
|
+
return newObj;
|
|
121
|
+
}
|
|
122
|
+
function _possible_constructor_return(self, call) {
|
|
123
|
+
if (call && (_type_of(call) === "object" || typeof call === "function")) {
|
|
124
|
+
return call;
|
|
125
|
+
}
|
|
126
|
+
return _assert_this_initialized(self);
|
|
127
|
+
}
|
|
128
|
+
function _set_prototype_of(o, p) {
|
|
129
|
+
_set_prototype_of = Object.setPrototypeOf || function setPrototypeOf(o, p) {
|
|
130
|
+
o.__proto__ = p;
|
|
131
|
+
return o;
|
|
132
|
+
};
|
|
133
|
+
return _set_prototype_of(o, p);
|
|
134
|
+
}
|
|
135
|
+
function _type_of(obj) {
|
|
136
|
+
"@swc/helpers - typeof";
|
|
137
|
+
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
138
|
+
}
|
|
139
|
+
function _is_native_reflect_construct() {
|
|
140
|
+
try {
|
|
141
|
+
var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
142
|
+
} catch (_) {}
|
|
143
|
+
return (_is_native_reflect_construct = function() {
|
|
144
|
+
return !!result;
|
|
145
|
+
})();
|
|
146
|
+
}
|
|
147
|
+
var bnf = "\n\n _ ::= term... <END_OF_LINE> ;\n \n ", rule = (0, _nodeAndTokens.ruleFromBNF)(bnf);
|
|
148
|
+
var TermNodeAndTokens = /*#__PURE__*/ function(NodeAndTokens) {
|
|
149
|
+
_inherits(TermNodeAndTokens, NodeAndTokens);
|
|
150
|
+
function TermNodeAndTokens() {
|
|
151
|
+
_class_call_check(this, TermNodeAndTokens);
|
|
152
|
+
return _call_super(this, TermNodeAndTokens, arguments);
|
|
153
|
+
}
|
|
154
|
+
_create_class(TermNodeAndTokens, [
|
|
155
|
+
{
|
|
156
|
+
key: "getTermNode",
|
|
157
|
+
value: function getTermNode() {
|
|
158
|
+
var termNode = this.node; ///
|
|
159
|
+
return termNode;
|
|
160
|
+
}
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
key: "getTermTokens",
|
|
164
|
+
value: function getTermTokens() {
|
|
165
|
+
var termTokens = this.tokens; ///
|
|
166
|
+
return termTokens;
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
], [
|
|
170
|
+
{
|
|
171
|
+
key: "fromTerm",
|
|
172
|
+
value: function fromTerm(term, context) {
|
|
173
|
+
var string = term.getString(), termNodeAndTokens = _nodeAndTokens.default.fromString(TermNodeAndTokens, string, context);
|
|
174
|
+
return termNodeAndTokens;
|
|
175
|
+
}
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
key: "fromTermString",
|
|
179
|
+
value: function fromTermString(termString, context) {
|
|
180
|
+
var string = termString, termNodeAndTokens = _nodeAndTokens.default.fromString(TermNodeAndTokens, string, context);
|
|
181
|
+
return termNodeAndTokens;
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
]);
|
|
185
|
+
return TermNodeAndTokens;
|
|
186
|
+
}(_nodeAndTokens.default);
|
|
187
|
+
_define_property(TermNodeAndTokens, "rule", rule);
|
|
188
|
+
function termNodeFromTermString(termString, context) {
|
|
189
|
+
var termNodeAndTokens = TermNodeAndTokens.fromTermString(termString, context), termNode = termNodeAndTokens.getTermNode();
|
|
190
|
+
return termNode;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9ub2RlQW5kVG9rZW5zL3Rlcm0uanMiXSwic291cmNlc0NvbnRlbnQiOlsiXCJ1c2Ugc3RyaWN0XCI7XG5cbmltcG9ydCBOb2RlQW5kVG9rZW5zIGZyb20gXCIuLi9ub2RlQW5kVG9rZW5zXCI7XG5cbmltcG9ydCB7IHJ1bGVGcm9tQk5GIH0gZnJvbSBcIi4uL25vZGVBbmRUb2tlbnNcIjtcblxuY29uc3QgYm5mID0gYFxuXG4gICAgICAgIF8gOjo9IHRlcm0uLi4gPEVORF9PRl9MSU5FPiA7XG4gICAgICAgIFxuICAgICAgYCxcbiAgICAgIHJ1bGUgPSBydWxlRnJvbUJORihibmYpO1xuXG5leHBvcnQgZGVmYXVsdCBjbGFzcyBUZXJtTm9kZUFuZFRva2VucyBleHRlbmRzIE5vZGVBbmRUb2tlbnMge1xuICBnZXRUZXJtTm9kZSgpIHtcbiAgICBjb25zdCB0ZXJtTm9kZSA9IHRoaXMubm9kZTsgLy8vXG5cbiAgICByZXR1cm4gdGVybU5vZGU7XG4gIH1cblxuICBnZXRUZXJtVG9rZW5zKCkge1xuICAgIGNvbnN0IHRlcm1Ub2tlbnMgPSB0aGlzLnRva2VuczsgLy8vXG5cbiAgICByZXR1cm4gdGVybVRva2VucztcbiAgfVxuXG4gIHN0YXRpYyBydWxlID0gcnVsZTtcblxuICBzdGF0aWMgZnJvbVRlcm0odGVybSwgY29udGV4dCkge1xuICAgIGNvbnN0IHN0cmluZyA9IHRlcm0uZ2V0U3RyaW5nKCksXG4gICAgICAgICAgdGVybU5vZGVBbmRUb2tlbnMgPSBOb2RlQW5kVG9rZW5zLmZyb21TdHJpbmcoVGVybU5vZGVBbmRUb2tlbnMsIHN0cmluZywgY29udGV4dCk7XG5cbiAgICByZXR1cm4gdGVybU5vZGVBbmRUb2tlbnM7XG4gIH1cblxuICBzdGF0aWMgZnJvbVRlcm1TdHJpbmcodGVybVN0cmluZywgY29udGV4dCkge1xuICAgIGNvbnN0IHN0cmluZyA9IHRlcm1TdHJpbmcsICAvLy9cbiAgICAgICAgICB0ZXJtTm9kZUFuZFRva2VucyA9IE5vZGVBbmRUb2tlbnMuZnJvbVN0cmluZyhUZXJtTm9kZUFuZFRva2Vucywgc3RyaW5nLCBjb250ZXh0KTtcblxuICAgIHJldHVybiB0ZXJtTm9kZUFuZFRva2VucztcbiAgfVxufVxuXG5leHBvcnQgZnVuY3Rpb24gdGVybU5vZGVGcm9tVGVybVN0cmluZyh0ZXJtU3RyaW5nLCBjb250ZXh0KSB7XG4gIGNvbnN0IHRlcm1Ob2RlQW5kVG9rZW5zID0gVGVybU5vZGVBbmRUb2tlbnMuZnJvbVRlcm1TdHJpbmcodGVybVN0cmluZywgY29udGV4dCksXG4gICAgICAgIHRlcm1Ob2RlID0gdGVybU5vZGVBbmRUb2tlbnMuZ2V0VGVybU5vZGUoKTtcblxuICByZXR1cm4gdGVybU5vZGU7XG59XG4iXSwibmFtZXMiOlsiVGVybU5vZGVBbmRUb2tlbnMiLCJ0ZXJtTm9kZUZyb21UZXJtU3RyaW5nIiwiYm5mIiwicnVsZSIsInJ1bGVGcm9tQk5GIiwiZ2V0VGVybU5vZGUiLCJ0ZXJtTm9kZSIsIm5vZGUiLCJnZXRUZXJtVG9rZW5zIiwidGVybVRva2VucyIsInRva2VucyIsImZyb21UZXJtIiwidGVybSIsImNvbnRleHQiLCJzdHJpbmciLCJnZXRTdHJpbmciLCJ0ZXJtTm9kZUFuZFRva2VucyIsIk5vZGVBbmRUb2tlbnMiLCJmcm9tU3RyaW5nIiwiZnJvbVRlcm1TdHJpbmciLCJ0ZXJtU3RyaW5nIl0sIm1hcHBpbmdzIjoiQUFBQTs7Ozs7Ozs7Ozs7O2VBYXFCQTs7SUE4QkxDLHNCQUFzQjtlQUF0QkE7OztxRUF6Q1U7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBSTFCLElBQU1DLE1BQU8sK0RBS1BDLE9BQU9DLElBQUFBLDBCQUFXLEVBQUNGO0FBRVYsSUFBQSxBQUFNRixrQ0FBTjtjQUFNQTthQUFBQTtnQ0FBQUE7aUNBQUFBOztrQkFBQUE7O1lBQ25CSyxLQUFBQTttQkFBQUEsU0FBQUE7Z0JBQ0UsSUFBTUMsV0FBVyxJQUFJLENBQUNDLElBQUksRUFBRSxHQUFHO2dCQUUvQixPQUFPRDtZQUNUOzs7WUFFQUUsS0FBQUE7bUJBQUFBLFNBQUFBO2dCQUNFLElBQU1DLGFBQWEsSUFBSSxDQUFDQyxNQUFNLEVBQUUsR0FBRztnQkFFbkMsT0FBT0Q7WUFDVDs7OztZQUlPRSxLQUFBQTttQkFBUCxTQUFPQSxTQUFTQyxJQUFJLEVBQUVDLE9BQU87Z0JBQzNCLElBQU1DLFNBQVNGLEtBQUtHLFNBQVMsSUFDdkJDLG9CQUFvQkMsc0JBQWEsQ0FBQ0MsVUFBVSxDQWpCakNsQixtQkFpQnFEYyxRQUFRRDtnQkFFOUUsT0FBT0c7WUFDVDs7O1lBRU9HLEtBQUFBO21CQUFQLFNBQU9BLGVBQWVDLFVBQVUsRUFBRVAsT0FBTztnQkFDdkMsSUFBTUMsU0FBU00sWUFDVEosb0JBQW9CQyxzQkFBYSxDQUFDQyxVQUFVLENBeEJqQ2xCLG1CQXdCcURjLFFBQVFEO2dCQUU5RSxPQUFPRztZQUNUOzs7V0EzQm1CaEI7RUFBMEJpQixzQkFBYTtBQWExRCxpQkFibUJqQixtQkFhWkcsUUFBT0E7QUFpQlQsU0FBU0YsdUJBQXVCbUIsVUFBVSxFQUFFUCxPQUFPO0lBQ3hELElBQU1HLG9CQUFvQmhCLGtCQUFrQm1CLGNBQWMsQ0FBQ0MsWUFBWVAsVUFDakVQLFdBQVdVLGtCQUFrQlgsV0FBVztJQUU5QyxPQUFPQztBQUNUIn0=
|