@opra/common 0.33.13 → 1.0.0-alpha.1
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/browser.js +4657 -3899
- package/cjs/document/api-document.js +112 -23
- package/cjs/document/common/api-base.js +27 -0
- package/cjs/document/common/data-type-map.js +66 -0
- package/cjs/document/common/document-element.js +31 -0
- package/cjs/document/common/document-init-context.js +69 -0
- package/cjs/document/common/document-node.js +124 -0
- package/cjs/document/common/opra-document-error.js +15 -0
- package/cjs/document/common/value.js +33 -0
- package/cjs/document/constants.js +13 -7
- package/cjs/document/data-type/api-field.js +64 -0
- package/cjs/document/data-type/complex-type-base.js +183 -0
- package/cjs/document/data-type/complex-type.js +89 -13
- package/cjs/document/data-type/data-type.js +32 -25
- package/cjs/document/data-type/decorators/api-field-decorator.js +26 -0
- package/cjs/document/data-type/decorators/complex-type.decorator.js +33 -0
- package/cjs/document/data-type/decorators/simple-type.decorator.js +67 -0
- package/cjs/document/data-type/enum-type.js +92 -36
- package/cjs/document/data-type/{builtin → extended-types}/base64.type.js +11 -2
- package/cjs/document/data-type/extended-types/date-string.type.js +44 -0
- package/cjs/document/data-type/extended-types/date-time-string.type.js +47 -0
- package/cjs/document/data-type/extended-types/date-time.type.js +58 -0
- package/cjs/document/data-type/extended-types/date.type.js +55 -0
- package/cjs/document/data-type/extended-types/email.type.js +80 -0
- package/cjs/document/data-type/extended-types/field-path.type.js +53 -0
- package/cjs/document/data-type/extended-types/filter.type.js +74 -0
- package/cjs/document/data-type/extended-types/index.js +16 -0
- package/cjs/document/data-type/{builtin → extended-types}/object-id.type.js +11 -2
- package/cjs/document/data-type/extended-types/operation-result.type.js +56 -0
- package/cjs/document/data-type/extended-types/time.type.js +47 -0
- package/cjs/document/data-type/{builtin → extended-types}/url.type.js +12 -3
- package/cjs/document/data-type/extended-types/uuid.type.js +30 -0
- package/cjs/document/data-type/mapped-type.js +77 -61
- package/cjs/document/data-type/mixin-type.js +78 -23
- package/cjs/document/data-type/omit-type.js +11 -0
- package/cjs/document/data-type/partial-type.js +13 -0
- package/cjs/document/data-type/pick-type.js +11 -0
- package/cjs/document/data-type/primitive-types/any.type.js +25 -0
- package/cjs/document/data-type/primitive-types/bigint.type.js +30 -0
- package/cjs/document/data-type/{builtin → primitive-types}/boolean.type.js +11 -2
- package/cjs/document/data-type/primitive-types/index.js +11 -0
- package/cjs/document/data-type/primitive-types/integer.type.js +30 -0
- package/cjs/document/data-type/{builtin → primitive-types}/null.type.js +11 -2
- package/cjs/document/data-type/primitive-types/number.type.js +40 -0
- package/cjs/document/data-type/{builtin → primitive-types}/object.type.js +7 -1
- package/cjs/document/data-type/primitive-types/string.type.js +58 -0
- package/cjs/document/data-type/required-type.js +13 -0
- package/cjs/document/data-type/simple-type.js +93 -14
- package/cjs/document/data-type/utils/create-mapped-class.js +54 -0
- package/cjs/document/data-type/utils/get-is-inherited-predicate-fn.js +15 -0
- package/cjs/document/{data-type/field-decorator.js → decorators/api-field-decorator.js} +7 -7
- package/cjs/document/{data-type → decorators}/complex-type.decorator.js +11 -1
- package/cjs/document/decorators/http-controller.decorator.js +117 -0
- package/cjs/document/decorators/http-operation-entity.decorator.js +462 -0
- package/cjs/document/decorators/http-operation.decorator.js +183 -0
- package/cjs/document/decorators/simple-type.decorator.js +67 -0
- package/cjs/document/factory/api-document.factory.js +178 -0
- package/cjs/document/factory/data-type.factory.js +498 -0
- package/cjs/document/factory/http-api.factory.js +315 -0
- package/cjs/document/http/decorators/http-controller.decorator.js +117 -0
- package/cjs/document/http/decorators/http-operation-entity.decorator.js +461 -0
- package/cjs/document/http/decorators/http-operation.decorator.js +183 -0
- package/cjs/document/http/http-api.js +40 -0
- package/cjs/document/http/http-controller.js +145 -0
- package/cjs/document/http/http-media-type.js +68 -0
- package/cjs/document/http/http-multipart-field.js +33 -0
- package/cjs/document/http/http-operation-response.js +42 -0
- package/cjs/document/http/http-operation.js +93 -0
- package/cjs/document/http/http-parameter.js +44 -0
- package/cjs/document/http/http-request-body.js +25 -0
- package/cjs/document/http/http-status-range.js +41 -0
- package/cjs/document/index.js +35 -22
- package/cjs/document/utils/inspect.util.js +3 -3
- package/cjs/document/utils/parse-regexp.util.js +22 -0
- package/cjs/exception/http-errors/bad-request.error.js +3 -3
- package/cjs/exception/http-errors/conflict.error.js +3 -3
- package/cjs/exception/http-errors/failed-dependency.error.js +3 -3
- package/cjs/exception/http-errors/forbidden.error.js +3 -3
- package/cjs/exception/http-errors/internal-server.error.js +3 -3
- package/cjs/exception/http-errors/method-not-allowed.error.js +3 -3
- package/cjs/exception/http-errors/not-acceptable.error.js +3 -3
- package/cjs/exception/http-errors/not-found.error.js +3 -3
- package/cjs/exception/{resource-errors → http-errors}/permission.error.js +2 -2
- package/cjs/exception/{resource-errors → http-errors}/resource-conflict.error.js +3 -3
- package/cjs/exception/{resource-errors → http-errors}/resource-not.available.error.js +5 -5
- package/cjs/exception/http-errors/unauthorized.error.js +3 -3
- package/cjs/exception/http-errors/unprocessable-entity.error.js +3 -3
- package/cjs/exception/index.js +4 -4
- package/cjs/exception/issue-severity.enum.js +1 -1
- package/cjs/exception/opra-exception.js +5 -16
- package/cjs/exception/opra-http-error.js +25 -0
- package/cjs/filter/antlr/OpraFilterLexer.js +259 -193
- package/cjs/filter/antlr/OpraFilterParser.js +137 -84
- package/cjs/filter/ast/expressions/arithmetic-expression.js +1 -1
- package/cjs/filter/ast/expressions/logical-expression.js +1 -3
- package/cjs/filter/ast/terms/number-literal.js +1 -3
- package/cjs/filter/ast/terms/time-literal.js +6 -4
- package/cjs/filter/build.js +1 -3
- package/cjs/filter/filter-rules.js +93 -0
- package/cjs/filter/filter-tree-visitor.js +4 -7
- package/cjs/filter/parse.js +2 -2
- package/cjs/filter/utils.js +1 -3
- package/cjs/helpers/function-utils.js +2 -11
- package/cjs/helpers/get-stack-filename.js +28 -4
- package/cjs/helpers/index.js +2 -2
- package/cjs/helpers/is-url-string.js +1 -2
- package/cjs/helpers/mixin-utils.js +5 -8
- package/cjs/helpers/monkey-patches.js +12 -0
- package/cjs/helpers/object-utils.js +4 -5
- package/cjs/helpers/parse-fields-projection.js +67 -0
- package/cjs/helpers/responsive-map.js +93 -117
- package/cjs/helpers/type-guards.js +22 -29
- package/cjs/http/enums/http-status-messages.js +63 -63
- package/cjs/http/enums/mime-types.enum.js +17 -0
- package/cjs/http/index.js +1 -2
- package/cjs/http/opra-url-path.js +14 -9
- package/cjs/http/opra-url.js +18 -15
- package/cjs/i18n/i18n.js +9 -5
- package/cjs/i18n/translate.js +2 -2
- package/cjs/index.js +1 -1
- package/cjs/schema/http/http-controller.interface.js +11 -0
- package/cjs/schema/http/http-operation.interface.js +7 -0
- package/cjs/schema/index.js +27 -2
- package/cjs/schema/type-guards.js +8 -30
- package/cjs/schema/value.interface.js +2 -0
- package/esm/document/api-document.js +112 -23
- package/esm/document/common/api-base.js +23 -0
- package/esm/document/common/data-type-map.js +62 -0
- package/esm/document/common/document-element.js +28 -0
- package/esm/document/common/document-init-context.js +65 -0
- package/esm/document/common/document-node.js +120 -0
- package/esm/document/common/opra-document-error.js +11 -0
- package/esm/document/common/value.js +30 -0
- package/esm/document/constants.js +12 -6
- package/esm/document/data-type/api-field.js +61 -0
- package/esm/document/data-type/complex-type-base.js +180 -0
- package/esm/document/data-type/complex-type.js +88 -11
- package/esm/document/data-type/data-type.js +32 -24
- package/esm/document/data-type/decorators/api-field-decorator.js +22 -0
- package/esm/document/data-type/decorators/complex-type.decorator.js +28 -0
- package/esm/document/data-type/decorators/simple-type.decorator.js +61 -0
- package/esm/document/data-type/enum-type.js +93 -36
- package/esm/document/data-type/extended-types/base64.type.js +22 -0
- package/esm/document/data-type/extended-types/date-string.type.js +41 -0
- package/esm/document/data-type/extended-types/date-time-string.type.js +44 -0
- package/esm/document/data-type/extended-types/date-time.type.js +55 -0
- package/esm/document/data-type/extended-types/date.type.js +52 -0
- package/esm/document/data-type/extended-types/email.type.js +77 -0
- package/esm/document/data-type/extended-types/field-path.type.js +50 -0
- package/esm/document/data-type/extended-types/filter.type.js +71 -0
- package/esm/document/data-type/extended-types/index.js +13 -0
- package/esm/document/data-type/extended-types/object-id.type.js +22 -0
- package/esm/document/{resource/types → data-type/extended-types}/operation-result.type.js +25 -14
- package/esm/document/data-type/extended-types/time.type.js +44 -0
- package/esm/document/data-type/extended-types/url.type.js +22 -0
- package/esm/document/data-type/extended-types/uuid.type.js +27 -0
- package/esm/document/data-type/mapped-type.js +76 -56
- package/esm/document/data-type/mixin-type.js +80 -24
- package/esm/document/data-type/omit-type.js +7 -0
- package/esm/document/data-type/partial-type.js +9 -0
- package/esm/document/data-type/pick-type.js +7 -0
- package/esm/document/data-type/primitive-types/any.type.js +22 -0
- package/esm/document/data-type/primitive-types/bigint.type.js +27 -0
- package/esm/document/data-type/primitive-types/boolean.type.js +22 -0
- package/esm/document/data-type/primitive-types/index.js +8 -0
- package/esm/document/data-type/primitive-types/integer.type.js +27 -0
- package/esm/document/data-type/{builtin → primitive-types}/null.type.js +11 -2
- package/esm/document/data-type/primitive-types/number.type.js +37 -0
- package/esm/document/data-type/{builtin → primitive-types}/object.type.js +7 -1
- package/esm/document/data-type/primitive-types/string.type.js +55 -0
- package/esm/document/data-type/required-type.js +9 -0
- package/esm/document/data-type/simple-type.js +92 -12
- package/esm/document/data-type/utils/create-mapped-class.js +50 -0
- package/esm/document/data-type/utils/get-is-inherited-predicate-fn.js +11 -0
- package/esm/document/{data-type/field-decorator.js → decorators/api-field-decorator.js} +5 -5
- package/esm/document/{data-type → decorators}/complex-type.decorator.js +12 -2
- package/esm/document/decorators/http-controller.decorator.js +112 -0
- package/esm/document/decorators/http-operation-entity.decorator.js +460 -0
- package/esm/document/decorators/http-operation.decorator.js +178 -0
- package/esm/document/decorators/simple-type.decorator.js +61 -0
- package/esm/document/factory/api-document.factory.js +174 -0
- package/esm/document/factory/data-type.factory.js +494 -0
- package/esm/document/factory/http-api.factory.js +311 -0
- package/esm/document/http/decorators/http-controller.decorator.js +112 -0
- package/esm/document/http/decorators/http-operation-entity.decorator.js +459 -0
- package/esm/document/http/decorators/http-operation.decorator.js +178 -0
- package/esm/document/http/http-api.js +36 -0
- package/esm/document/http/http-controller.js +142 -0
- package/esm/document/http/http-media-type.js +65 -0
- package/esm/document/http/http-multipart-field.js +29 -0
- package/esm/document/http/http-operation-response.js +38 -0
- package/esm/document/http/http-operation.js +90 -0
- package/esm/document/http/http-parameter.js +41 -0
- package/esm/document/http/http-request-body.js +21 -0
- package/esm/document/http/http-status-range.js +37 -0
- package/esm/document/index.js +34 -22
- package/esm/document/utils/inspect.util.js +3 -3
- package/esm/document/utils/parse-regexp.util.js +18 -0
- package/esm/exception/http-errors/bad-request.error.js +3 -3
- package/esm/exception/http-errors/conflict.error.js +3 -3
- package/esm/exception/http-errors/failed-dependency.error.js +3 -3
- package/esm/exception/http-errors/forbidden.error.js +3 -3
- package/esm/exception/http-errors/internal-server.error.js +3 -3
- package/esm/exception/http-errors/method-not-allowed.error.js +3 -3
- package/esm/exception/http-errors/not-acceptable.error.js +3 -3
- package/esm/exception/http-errors/not-found.error.js +3 -3
- package/esm/exception/{resource-errors → http-errors}/permission.error.js +2 -2
- package/esm/exception/{resource-errors → http-errors}/resource-conflict.error.js +3 -3
- package/esm/exception/{resource-errors → http-errors}/resource-not.available.error.js +5 -5
- package/esm/exception/http-errors/unauthorized.error.js +3 -3
- package/esm/exception/http-errors/unprocessable-entity.error.js +3 -3
- package/esm/exception/index.js +4 -4
- package/esm/exception/issue-severity.enum.js +1 -1
- package/esm/exception/opra-exception.js +5 -16
- package/esm/exception/opra-http-error.js +21 -0
- package/esm/filter/antlr/OpraFilterLexer.js +260 -194
- package/esm/filter/antlr/OpraFilterListener.js +1 -1
- package/esm/filter/antlr/OpraFilterParser.js +138 -85
- package/esm/filter/ast/expressions/arithmetic-expression.js +1 -1
- package/esm/filter/ast/expressions/logical-expression.js +1 -3
- package/esm/filter/ast/terms/number-literal.js +1 -3
- package/esm/filter/ast/terms/time-literal.js +6 -4
- package/esm/filter/build.js +2 -4
- package/esm/filter/filter-rules.js +89 -0
- package/esm/filter/filter-tree-visitor.js +4 -6
- package/esm/filter/parse.js +2 -2
- package/esm/filter/utils.js +1 -3
- package/esm/helpers/function-utils.js +1 -9
- package/esm/helpers/get-stack-filename.js +26 -3
- package/esm/helpers/index.js +2 -2
- package/esm/helpers/is-url-string.js +1 -2
- package/esm/helpers/mixin-utils.js +5 -8
- package/esm/helpers/monkey-patches.js +12 -0
- package/esm/helpers/object-utils.js +4 -5
- package/esm/helpers/parse-fields-projection.js +61 -0
- package/esm/helpers/responsive-map.js +93 -117
- package/esm/helpers/type-guards.js +22 -29
- package/esm/http/enums/http-status-messages.js +63 -63
- package/esm/http/enums/mime-types.enum.js +14 -0
- package/esm/http/index.js +1 -2
- package/esm/http/opra-url-path.js +14 -9
- package/esm/http/opra-url.js +18 -15
- package/esm/i18n/i18n.js +9 -5
- package/esm/i18n/translate.js +2 -2
- package/esm/index.js +1 -1
- package/esm/schema/http/http-controller.interface.js +8 -0
- package/esm/schema/http/http-operation.interface.js +4 -0
- package/esm/schema/index.js +27 -2
- package/esm/schema/type-guards.js +6 -24
- package/esm/schema/value.interface.js +1 -0
- package/package.json +14 -13
- package/types/document/api-document.d.ts +31 -51
- package/types/document/common/api-base.d.ts +17 -0
- package/types/document/common/data-type-map.d.ts +23 -0
- package/types/document/common/document-element.d.ts +23 -0
- package/types/document/common/document-init-context.d.ts +17 -0
- package/types/document/common/document-node.d.ts +65 -0
- package/types/document/common/opra-document-error.d.ts +12 -0
- package/types/document/common/value.d.ts +48 -0
- package/types/document/constants.d.ts +9 -3
- package/types/document/data-type/api-field.d.ts +65 -0
- package/types/document/data-type/complex-type-base.d.ts +80 -0
- package/types/document/data-type/complex-type.d.ts +61 -35
- package/types/document/data-type/data-type.d.ts +49 -46
- package/types/document/data-type/decorators/api-field-decorator.d.ts +5 -0
- package/types/document/data-type/decorators/complex-type.decorator.d.ts +2 -0
- package/types/document/data-type/decorators/simple-type.decorator.d.ts +20 -0
- package/types/document/data-type/enum-type.d.ts +59 -23
- package/types/document/data-type/extended-types/base64.type.d.ts +7 -0
- package/types/document/data-type/extended-types/date-string.type.d.ts +9 -0
- package/types/document/data-type/extended-types/date-time-string.type.d.ts +9 -0
- package/types/document/data-type/extended-types/date-time.type.d.ts +9 -0
- package/types/document/data-type/extended-types/date.type.d.ts +9 -0
- package/types/document/data-type/extended-types/email.type.d.ts +16 -0
- package/types/document/data-type/extended-types/field-path.type.d.ts +15 -0
- package/types/document/data-type/extended-types/filter.type.d.ts +16 -0
- package/types/document/data-type/extended-types/index.d.ts +13 -0
- package/types/document/data-type/extended-types/object-id.type.d.ts +7 -0
- package/types/document/{resource/types → data-type/extended-types}/operation-result.type.d.ts +7 -6
- package/types/document/data-type/extended-types/time.type.d.ts +9 -0
- package/types/document/data-type/extended-types/url.type.d.ts +7 -0
- package/types/document/data-type/extended-types/uuid.type.d.ts +8 -0
- package/types/document/data-type/mapped-type.d.ts +55 -44
- package/types/document/data-type/mixin-type.d.ts +65 -26
- package/types/document/data-type/omit-type.d.ts +15 -0
- package/types/document/data-type/partial-type.d.ts +28 -0
- package/types/document/data-type/pick-type.d.ts +16 -0
- package/types/document/data-type/primitive-types/any.type.d.ts +7 -0
- package/types/document/data-type/primitive-types/bigint.type.d.ts +8 -0
- package/types/document/data-type/primitive-types/boolean.type.d.ts +7 -0
- package/types/document/data-type/primitive-types/index.d.ts +8 -0
- package/types/document/data-type/primitive-types/integer.type.d.ts +8 -0
- package/types/document/data-type/primitive-types/null.type.d.ts +7 -0
- package/types/document/data-type/primitive-types/number.type.d.ts +9 -0
- package/types/document/data-type/primitive-types/object.type.d.ts +3 -0
- package/types/document/data-type/primitive-types/string.type.d.ts +11 -0
- package/types/document/data-type/required-type.d.ts +22 -0
- package/types/document/data-type/simple-type.d.ts +63 -24
- package/types/document/data-type/utils/create-mapped-class.d.ts +3 -0
- package/types/document/data-type/utils/get-is-inherited-predicate-fn.d.ts +1 -0
- package/types/document/decorators/api-field-decorator.d.ts +5 -0
- package/types/document/decorators/complex-type.decorator.d.ts +2 -0
- package/types/document/decorators/http-controller.decorator.d.ts +14 -0
- package/types/document/decorators/http-operation-entity.decorator.d.ts +100 -0
- package/types/document/decorators/http-operation.decorator.d.ts +30 -0
- package/types/document/decorators/simple-type.decorator.d.ts +20 -0
- package/types/document/factory/api-document.factory.d.ts +35 -0
- package/types/document/factory/data-type.factory.d.ts +103 -0
- package/types/document/factory/http-api.factory.d.ts +60 -0
- package/types/document/http/decorators/http-controller.decorator.d.ts +14 -0
- package/types/document/http/decorators/http-operation-entity.decorator.d.ts +100 -0
- package/types/document/http/decorators/http-operation.decorator.d.ts +30 -0
- package/types/document/http/http-api.d.ts +23 -0
- package/types/document/http/http-controller.d.ts +92 -0
- package/types/document/http/http-media-type.d.ts +59 -0
- package/types/document/http/http-multipart-field.d.ts +26 -0
- package/types/document/http/http-operation-response.d.ts +36 -0
- package/types/document/http/http-operation.d.ts +84 -0
- package/types/document/http/http-parameter.d.ts +50 -0
- package/types/document/http/http-request-body.d.ts +31 -0
- package/types/document/http/http-status-range.d.ts +14 -0
- package/types/document/index.d.ts +33 -22
- package/types/document/utils/parse-regexp.util.d.ts +4 -0
- package/types/exception/http-errors/bad-request.error.d.ts +2 -2
- package/types/exception/http-errors/conflict.error.d.ts +2 -2
- package/types/exception/http-errors/failed-dependency.error.d.ts +2 -2
- package/types/exception/http-errors/forbidden.error.d.ts +2 -2
- package/types/exception/http-errors/internal-server.error.d.ts +2 -2
- package/types/exception/http-errors/method-not-allowed.error.d.ts +2 -2
- package/types/exception/http-errors/not-acceptable.error.d.ts +2 -2
- package/types/exception/http-errors/not-found.error.d.ts +2 -2
- package/types/exception/{resource-errors → http-errors}/permission.error.d.ts +1 -1
- package/types/exception/http-errors/resource-conflict.error.d.ts +5 -0
- package/types/exception/{resource-errors → http-errors}/resource-not.available.error.d.ts +2 -2
- package/types/exception/http-errors/unauthorized.error.d.ts +2 -2
- package/types/exception/http-errors/unprocessable-entity.error.d.ts +2 -2
- package/types/exception/index.d.ts +4 -4
- package/types/exception/opra-exception.d.ts +1 -5
- package/types/exception/opra-http-error.d.ts +13 -0
- package/types/filter/antlr/OpraFilterLexer.d.ts +1 -1
- package/types/filter/antlr/OpraFilterListener.d.ts +2 -2
- package/types/filter/antlr/OpraFilterParser.d.ts +2 -2
- package/types/filter/antlr/OpraFilterVisitor.d.ts +1 -1
- package/types/filter/ast/terms/qualified-identifier.d.ts +1 -1
- package/types/filter/filter-rules.d.ts +24 -0
- package/types/filter/filter-tree-visitor.d.ts +1 -3
- package/types/helpers/function-utils.d.ts +2 -4
- package/types/helpers/get-stack-filename.d.ts +1 -0
- package/types/helpers/index.d.ts +2 -2
- package/types/helpers/monkey-patches.d.ts +0 -0
- package/types/helpers/parse-fields-projection.d.ts +11 -0
- package/types/helpers/responsive-map.d.ts +8 -4
- package/types/helpers/type-guards.d.ts +2 -2
- package/types/http/enums/http-status-messages.d.ts +63 -63
- package/types/http/enums/mime-types.enum.d.ts +12 -0
- package/types/http/index.d.ts +1 -2
- package/types/i18n/i18n.d.ts +2 -1
- package/types/schema/data-type/complex-type.interface.d.ts +3 -3
- package/types/schema/data-type/data-type.interface.d.ts +6 -0
- package/types/schema/data-type/enum-type.interface.d.ts +3 -4
- package/types/schema/data-type/field.interface.d.ts +2 -10
- package/types/schema/data-type/mapped-type.interface.d.ts +7 -3
- package/types/schema/data-type/mixin-type.interface.d.ts +2 -2
- package/types/schema/data-type/simple-type.interface.d.ts +35 -7
- package/types/schema/data-type-container.interface.d.ts +7 -0
- package/types/schema/document.interface.d.ts +55 -0
- package/types/schema/http/http-controller.interface.d.ts +24 -0
- package/types/schema/http/http-media-type.interface.d.ts +65 -0
- package/types/schema/http/http-multipart-field.interface.d.ts +7 -0
- package/types/schema/http/http-operation-response.interface.d.ts +24 -0
- package/types/schema/http/http-operation.interface.d.ts +23 -0
- package/types/schema/http/http-parameter.interface.d.ts +28 -0
- package/types/schema/http/http-request-body.interface.d.ts +29 -0
- package/types/schema/http/http-status-range.interface.d.ts +4 -0
- package/types/schema/index.d.ts +61 -2
- package/types/schema/type-guards.d.ts +2 -10
- package/types/schema/types.d.ts +3 -0
- package/types/schema/value.interface.d.ts +23 -0
- package/types/types.d.ts +1 -14
- package/cjs/document/data-type/builtin/any.type.js +0 -13
- package/cjs/document/data-type/builtin/approx-date.type.js +0 -21
- package/cjs/document/data-type/builtin/approx-datetime.type.js +0 -24
- package/cjs/document/data-type/builtin/bigint.type.js +0 -16
- package/cjs/document/data-type/builtin/date.type.js +0 -17
- package/cjs/document/data-type/builtin/datetime.type.js +0 -21
- package/cjs/document/data-type/builtin/email.type.js +0 -16
- package/cjs/document/data-type/builtin/index.js +0 -21
- package/cjs/document/data-type/builtin/integer.type.js +0 -16
- package/cjs/document/data-type/builtin/number.type.js +0 -16
- package/cjs/document/data-type/builtin/string.type.js +0 -16
- package/cjs/document/data-type/builtin/time.type.js +0 -23
- package/cjs/document/data-type/builtin/uuid.type.js +0 -16
- package/cjs/document/data-type/complex-type-class.js +0 -274
- package/cjs/document/data-type/enum-type-class.js +0 -39
- package/cjs/document/data-type/field-class.js +0 -67
- package/cjs/document/data-type/field.js +0 -25
- package/cjs/document/data-type/mapped-type-class.js +0 -53
- package/cjs/document/data-type/mixin-type-class.js +0 -38
- package/cjs/document/data-type/simple-type-class.js +0 -37
- package/cjs/document/data-type/simple-type.decorator.js +0 -20
- package/cjs/document/document-base.js +0 -24
- package/cjs/document/factory/api-document-factory.js +0 -262
- package/cjs/document/factory/type-document-factory.js +0 -326
- package/cjs/document/resource/action-decorator.js +0 -33
- package/cjs/document/resource/action.js +0 -34
- package/cjs/document/resource/collection-class.js +0 -257
- package/cjs/document/resource/collection-decorator.js +0 -211
- package/cjs/document/resource/collection.js +0 -25
- package/cjs/document/resource/container-class.js +0 -84
- package/cjs/document/resource/container-decorator.js +0 -24
- package/cjs/document/resource/container.js +0 -29
- package/cjs/document/resource/crud-operation-decorator.js +0 -28
- package/cjs/document/resource/crud-operation.js +0 -49
- package/cjs/document/resource/crud-resource.js +0 -34
- package/cjs/document/resource/endpoint.js +0 -59
- package/cjs/document/resource/enums/metadata-mode.enum.js +0 -19
- package/cjs/document/resource/parameter.js +0 -50
- package/cjs/document/resource/resource-decorator.js +0 -33
- package/cjs/document/resource/resource.js +0 -60
- package/cjs/document/resource/singleton-class.js +0 -83
- package/cjs/document/resource/singleton-decorator.js +0 -57
- package/cjs/document/resource/singleton.js +0 -25
- package/cjs/document/resource/storage-class.js +0 -18
- package/cjs/document/resource/storage-decorator.js +0 -70
- package/cjs/document/resource/storage.js +0 -25
- package/cjs/document/resource/types/operation-result.type.js +0 -45
- package/cjs/document/type-document.js +0 -204
- package/cjs/exception/wrap-exception.js +0 -43
- package/cjs/helpers/path-to-object-tree.js +0 -28
- package/cjs/schema/opra-schema.ns.js +0 -22
- package/cjs/schema/resource/collection.interface.js +0 -7
- package/cjs/schema/resource/container.interface.js +0 -7
- package/cjs/schema/resource/singleton.interface.js +0 -7
- package/cjs/schema/resource/storage.interface.js +0 -7
- package/esm/document/data-type/builtin/any.type.js +0 -10
- package/esm/document/data-type/builtin/approx-date.type.js +0 -18
- package/esm/document/data-type/builtin/approx-datetime.type.js +0 -21
- package/esm/document/data-type/builtin/base64.type.js +0 -13
- package/esm/document/data-type/builtin/bigint.type.js +0 -13
- package/esm/document/data-type/builtin/boolean.type.js +0 -13
- package/esm/document/data-type/builtin/date.type.js +0 -14
- package/esm/document/data-type/builtin/datetime.type.js +0 -18
- package/esm/document/data-type/builtin/email.type.js +0 -13
- package/esm/document/data-type/builtin/index.js +0 -18
- package/esm/document/data-type/builtin/integer.type.js +0 -13
- package/esm/document/data-type/builtin/number.type.js +0 -13
- package/esm/document/data-type/builtin/object-id.type.js +0 -13
- package/esm/document/data-type/builtin/string.type.js +0 -13
- package/esm/document/data-type/builtin/time.type.js +0 -20
- package/esm/document/data-type/builtin/url.type.js +0 -13
- package/esm/document/data-type/builtin/uuid.type.js +0 -13
- package/esm/document/data-type/complex-type-class.js +0 -270
- package/esm/document/data-type/enum-type-class.js +0 -35
- package/esm/document/data-type/field-class.js +0 -63
- package/esm/document/data-type/field.js +0 -21
- package/esm/document/data-type/mapped-type-class.js +0 -48
- package/esm/document/data-type/mixin-type-class.js +0 -34
- package/esm/document/data-type/simple-type-class.js +0 -33
- package/esm/document/data-type/simple-type.decorator.js +0 -15
- package/esm/document/document-base.js +0 -20
- package/esm/document/factory/api-document-factory.js +0 -258
- package/esm/document/factory/type-document-factory.js +0 -322
- package/esm/document/resource/action-decorator.js +0 -29
- package/esm/document/resource/action.js +0 -30
- package/esm/document/resource/collection-class.js +0 -253
- package/esm/document/resource/collection-decorator.js +0 -207
- package/esm/document/resource/collection.js +0 -21
- package/esm/document/resource/container-class.js +0 -80
- package/esm/document/resource/container-decorator.js +0 -20
- package/esm/document/resource/container.js +0 -25
- package/esm/document/resource/crud-operation-decorator.js +0 -24
- package/esm/document/resource/crud-operation.js +0 -45
- package/esm/document/resource/crud-resource.js +0 -30
- package/esm/document/resource/endpoint.js +0 -55
- package/esm/document/resource/enums/metadata-mode.enum.js +0 -16
- package/esm/document/resource/parameter.js +0 -46
- package/esm/document/resource/resource-decorator.js +0 -28
- package/esm/document/resource/resource.js +0 -56
- package/esm/document/resource/singleton-class.js +0 -79
- package/esm/document/resource/singleton-decorator.js +0 -53
- package/esm/document/resource/singleton.js +0 -21
- package/esm/document/resource/storage-class.js +0 -14
- package/esm/document/resource/storage-decorator.js +0 -66
- package/esm/document/resource/storage.js +0 -21
- package/esm/document/type-document.js +0 -200
- package/esm/exception/wrap-exception.js +0 -39
- package/esm/helpers/path-to-object-tree.js +0 -24
- package/esm/schema/opra-schema.ns.js +0 -19
- package/esm/schema/resource/collection.interface.js +0 -4
- package/esm/schema/resource/container.interface.js +0 -4
- package/esm/schema/resource/singleton.interface.js +0 -4
- package/esm/schema/resource/storage.interface.js +0 -4
- package/types/document/data-type/builtin/any.type.d.ts +0 -2
- package/types/document/data-type/builtin/approx-date.type.d.ts +0 -2
- package/types/document/data-type/builtin/approx-datetime.type.d.ts +0 -2
- package/types/document/data-type/builtin/base64.type.d.ts +0 -2
- package/types/document/data-type/builtin/bigint.type.d.ts +0 -2
- package/types/document/data-type/builtin/boolean.type.d.ts +0 -2
- package/types/document/data-type/builtin/date.type.d.ts +0 -2
- package/types/document/data-type/builtin/datetime.type.d.ts +0 -2
- package/types/document/data-type/builtin/email.type.d.ts +0 -2
- package/types/document/data-type/builtin/index.d.ts +0 -18
- package/types/document/data-type/builtin/integer.type.d.ts +0 -2
- package/types/document/data-type/builtin/null.type.d.ts +0 -2
- package/types/document/data-type/builtin/number.type.d.ts +0 -2
- package/types/document/data-type/builtin/object-id.type.d.ts +0 -2
- package/types/document/data-type/builtin/object.type.d.ts +0 -2
- package/types/document/data-type/builtin/string.type.d.ts +0 -2
- package/types/document/data-type/builtin/time.type.d.ts +0 -2
- package/types/document/data-type/builtin/url.type.d.ts +0 -2
- package/types/document/data-type/builtin/uuid.type.d.ts +0 -2
- package/types/document/data-type/complex-type-class.d.ts +0 -36
- package/types/document/data-type/complex-type.decorator.d.ts +0 -2
- package/types/document/data-type/enum-type-class.d.ts +0 -18
- package/types/document/data-type/field-class.d.ts +0 -31
- package/types/document/data-type/field-decorator.d.ts +0 -5
- package/types/document/data-type/field.d.ts +0 -46
- package/types/document/data-type/mapped-type-class.d.ts +0 -18
- package/types/document/data-type/mixin-type-class.d.ts +0 -12
- package/types/document/data-type/simple-type-class.d.ts +0 -19
- package/types/document/data-type/simple-type.decorator.d.ts +0 -2
- package/types/document/document-base.d.ts +0 -10
- package/types/document/factory/api-document-factory.d.ts +0 -49
- package/types/document/factory/type-document-factory.d.ts +0 -57
- package/types/document/interfaces/collection.interface.d.ts +0 -10
- package/types/document/interfaces/singleton.interface.d.ts +0 -7
- package/types/document/interfaces/storage.interface.d.ts +0 -8
- package/types/document/resource/action-decorator.d.ts +0 -8
- package/types/document/resource/action.d.ts +0 -30
- package/types/document/resource/collection-class.d.ts +0 -20
- package/types/document/resource/collection-decorator.d.ts +0 -204
- package/types/document/resource/collection.d.ts +0 -62
- package/types/document/resource/container-class.d.ts +0 -66
- package/types/document/resource/container-decorator.d.ts +0 -37
- package/types/document/resource/container.d.ts +0 -27
- package/types/document/resource/crud-operation-decorator.d.ts +0 -6
- package/types/document/resource/crud-operation.d.ts +0 -32
- package/types/document/resource/crud-resource.d.ts +0 -16
- package/types/document/resource/endpoint.d.ts +0 -32
- package/types/document/resource/enums/metadata-mode.enum.d.ts +0 -5
- package/types/document/resource/parameter.d.ts +0 -35
- package/types/document/resource/resource-decorator.d.ts +0 -40
- package/types/document/resource/resource.d.ts +0 -35
- package/types/document/resource/singleton-class.d.ts +0 -21
- package/types/document/resource/singleton-decorator.d.ts +0 -131
- package/types/document/resource/singleton.d.ts +0 -49
- package/types/document/resource/storage-class.d.ts +0 -17
- package/types/document/resource/storage-decorator.d.ts +0 -100
- package/types/document/resource/storage.d.ts +0 -39
- package/types/document/type-document.d.ts +0 -79
- package/types/exception/resource-errors/resource-conflict.error.d.ts +0 -5
- package/types/exception/wrap-exception.d.ts +0 -2
- package/types/helpers/path-to-object-tree.d.ts +0 -4
- package/types/schema/document/api-document.interface.d.ts +0 -11
- package/types/schema/document/document-base.interface.d.ts +0 -24
- package/types/schema/document/type-document.interface.d.ts +0 -6
- package/types/schema/opra-schema.ns.d.ts +0 -19
- package/types/schema/resource/action.interface.d.ts +0 -6
- package/types/schema/resource/collection.interface.d.ts +0 -55
- package/types/schema/resource/container.interface.d.ts +0 -10
- package/types/schema/resource/endpoint.interface.d.ts +0 -13
- package/types/schema/resource/resource.interface.d.ts +0 -15
- package/types/schema/resource/singleton.interface.d.ts +0 -25
- package/types/schema/resource/storage.interface.d.ts +0 -61
- /package/cjs/{document/interfaces/collection.interface.js → schema/data-type-container.interface.js} +0 -0
- /package/cjs/{document/interfaces/singleton.interface.js → schema/document.interface.js} +0 -0
- /package/cjs/{document/interfaces/storage.interface.js → schema/http/http-media-type.interface.js} +0 -0
- /package/cjs/schema/{document/api-document.interface.js → http/http-multipart-field.interface.js} +0 -0
- /package/cjs/schema/{document/document-base.interface.js → http/http-operation-response.interface.js} +0 -0
- /package/cjs/schema/{document/type-document.interface.js → http/http-parameter.interface.js} +0 -0
- /package/cjs/schema/{resource/action.interface.js → http/http-request-body.interface.js} +0 -0
- /package/cjs/schema/{resource/endpoint.interface.js → http/http-status-range.interface.js} +0 -0
- /package/cjs/schema/{resource/resource.interface.js → types.js} +0 -0
- /package/esm/{document/interfaces/collection.interface.js → schema/data-type-container.interface.js} +0 -0
- /package/esm/{document/interfaces/singleton.interface.js → schema/document.interface.js} +0 -0
- /package/esm/{document/interfaces/storage.interface.js → schema/http/http-media-type.interface.js} +0 -0
- /package/esm/schema/{document/api-document.interface.js → http/http-multipart-field.interface.js} +0 -0
- /package/esm/schema/{document/document-base.interface.js → http/http-operation-response.interface.js} +0 -0
- /package/esm/schema/{document/type-document.interface.js → http/http-parameter.interface.js} +0 -0
- /package/esm/schema/{resource/action.interface.js → http/http-request-body.interface.js} +0 -0
- /package/esm/schema/{resource/endpoint.interface.js → http/http-status-range.interface.js} +0 -0
- /package/esm/schema/{resource/resource.interface.js → types.js} +0 -0
|
@@ -9,7 +9,7 @@ class OpraFilterLexer extends antlr4_1.Lexer {
|
|
|
9
9
|
this._interp = new antlr4_1.LexerATNSimulator(this, OpraFilterLexer._ATN, OpraFilterLexer.DecisionsToDFA, new antlr4_1.PredictionContextCache());
|
|
10
10
|
}
|
|
11
11
|
get grammarFileName() {
|
|
12
|
-
return
|
|
12
|
+
return 'OpraFilter.g4';
|
|
13
13
|
}
|
|
14
14
|
get literalNames() {
|
|
15
15
|
return OpraFilterLexer.literalNames;
|
|
@@ -80,200 +80,266 @@ OpraFilterLexer.INTEGER = 41;
|
|
|
80
80
|
OpraFilterLexer.STRING = 42;
|
|
81
81
|
OpraFilterLexer.WHITESPACE = 43;
|
|
82
82
|
OpraFilterLexer.EOF = antlr4_1.Token.EOF;
|
|
83
|
-
OpraFilterLexer.channelNames = [
|
|
84
|
-
OpraFilterLexer.literalNames = [
|
|
85
|
-
|
|
86
|
-
"'
|
|
87
|
-
"'
|
|
88
|
-
"'
|
|
89
|
-
"'
|
|
90
|
-
"'
|
|
83
|
+
OpraFilterLexer.channelNames = ['DEFAULT_TOKEN_CHANNEL', 'HIDDEN'];
|
|
84
|
+
OpraFilterLexer.literalNames = [
|
|
85
|
+
null,
|
|
86
|
+
"'('",
|
|
87
|
+
"')'",
|
|
88
|
+
"'not'",
|
|
89
|
+
"'!'",
|
|
90
|
+
"'.'",
|
|
91
|
+
"'@'",
|
|
92
|
+
"'['",
|
|
93
|
+
"','",
|
|
94
|
+
"']'",
|
|
95
|
+
"'true'",
|
|
96
|
+
"'false'",
|
|
97
|
+
"'null'",
|
|
98
|
+
"'Infinity'",
|
|
91
99
|
"'infinity'",
|
|
92
|
-
"'+'",
|
|
93
|
-
"'
|
|
94
|
-
"'
|
|
95
|
-
"'
|
|
96
|
-
"'
|
|
97
|
-
"'
|
|
98
|
-
"'
|
|
99
|
-
"'
|
|
100
|
-
"'
|
|
101
|
-
"'
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
null,
|
|
115
|
-
null,
|
|
116
|
-
null,
|
|
117
|
-
null,
|
|
118
|
-
null,
|
|
119
|
-
null,
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
100
|
+
"'+'",
|
|
101
|
+
"'-'",
|
|
102
|
+
"'*'",
|
|
103
|
+
"'/'",
|
|
104
|
+
"'<='",
|
|
105
|
+
"'<'",
|
|
106
|
+
"'>'",
|
|
107
|
+
"'>='",
|
|
108
|
+
"'='",
|
|
109
|
+
"'!='",
|
|
110
|
+
"'in'",
|
|
111
|
+
"'!in'",
|
|
112
|
+
"'like'",
|
|
113
|
+
"'!like'",
|
|
114
|
+
"'ilike'",
|
|
115
|
+
"'!ilike'",
|
|
116
|
+
"'and'",
|
|
117
|
+
"'or'",
|
|
118
|
+
"'&&'",
|
|
119
|
+
"'||'",
|
|
120
|
+
];
|
|
121
|
+
OpraFilterLexer.symbolicNames = [
|
|
122
|
+
null,
|
|
123
|
+
null,
|
|
124
|
+
null,
|
|
125
|
+
null,
|
|
126
|
+
null,
|
|
127
|
+
null,
|
|
128
|
+
null,
|
|
129
|
+
null,
|
|
130
|
+
null,
|
|
131
|
+
null,
|
|
132
|
+
null,
|
|
133
|
+
null,
|
|
134
|
+
null,
|
|
135
|
+
null,
|
|
136
|
+
null,
|
|
137
|
+
null,
|
|
138
|
+
null,
|
|
139
|
+
null,
|
|
140
|
+
null,
|
|
141
|
+
null,
|
|
142
|
+
null,
|
|
143
|
+
null,
|
|
144
|
+
null,
|
|
145
|
+
null,
|
|
146
|
+
null,
|
|
147
|
+
null,
|
|
148
|
+
null,
|
|
149
|
+
null,
|
|
150
|
+
null,
|
|
151
|
+
null,
|
|
152
|
+
null,
|
|
153
|
+
null,
|
|
154
|
+
null,
|
|
155
|
+
null,
|
|
156
|
+
null,
|
|
157
|
+
'IDENTIFIER',
|
|
158
|
+
'POLAR_OP',
|
|
159
|
+
'DATE',
|
|
160
|
+
'DATETIME',
|
|
161
|
+
'TIME',
|
|
162
|
+
'NUMBER',
|
|
163
|
+
'INTEGER',
|
|
164
|
+
'STRING',
|
|
165
|
+
'WHITESPACE',
|
|
166
|
+
];
|
|
167
|
+
OpraFilterLexer.modeNames = ['DEFAULT_MODE'];
|
|
126
168
|
OpraFilterLexer.ruleNames = [
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
169
|
+
'T__0',
|
|
170
|
+
'T__1',
|
|
171
|
+
'T__2',
|
|
172
|
+
'T__3',
|
|
173
|
+
'T__4',
|
|
174
|
+
'T__5',
|
|
175
|
+
'T__6',
|
|
176
|
+
'T__7',
|
|
177
|
+
'T__8',
|
|
178
|
+
'T__9',
|
|
179
|
+
'T__10',
|
|
180
|
+
'T__11',
|
|
181
|
+
'T__12',
|
|
182
|
+
'T__13',
|
|
183
|
+
'T__14',
|
|
184
|
+
'T__15',
|
|
185
|
+
'T__16',
|
|
186
|
+
'T__17',
|
|
187
|
+
'T__18',
|
|
188
|
+
'T__19',
|
|
189
|
+
'T__20',
|
|
190
|
+
'T__21',
|
|
191
|
+
'T__22',
|
|
192
|
+
'T__23',
|
|
193
|
+
'T__24',
|
|
194
|
+
'T__25',
|
|
195
|
+
'T__26',
|
|
196
|
+
'T__27',
|
|
197
|
+
'T__28',
|
|
198
|
+
'T__29',
|
|
199
|
+
'T__30',
|
|
200
|
+
'T__31',
|
|
201
|
+
'T__32',
|
|
202
|
+
'T__33',
|
|
203
|
+
'IDENTIFIER',
|
|
204
|
+
'POLAR_OP',
|
|
205
|
+
'DATE',
|
|
206
|
+
'DATETIME',
|
|
207
|
+
'TIME',
|
|
208
|
+
'NUMBER',
|
|
209
|
+
'INTEGER',
|
|
210
|
+
'STRING',
|
|
211
|
+
'WHITESPACE',
|
|
212
|
+
'DIGIT',
|
|
213
|
+
'DATEFORMAT',
|
|
214
|
+
'TIMEFORMAT',
|
|
215
|
+
'TIMEZONEOFFSETFORMAT',
|
|
216
|
+
'ESC',
|
|
217
|
+
'UNICODE',
|
|
218
|
+
'HEX',
|
|
219
|
+
];
|
|
220
|
+
OpraFilterLexer._serializedATN = [
|
|
221
|
+
4, 0, 43, 426, 6, -1, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7,
|
|
222
|
+
7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2,
|
|
223
|
+
16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24,
|
|
224
|
+
7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7,
|
|
225
|
+
32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40,
|
|
226
|
+
2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2,
|
|
227
|
+
49, 7, 49, 1, 0, 1, 0, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 3, 1, 3, 1, 4, 1, 4, 1, 5, 1, 5, 1, 6, 1, 6, 1, 7, 1,
|
|
228
|
+
7, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 1, 11,
|
|
229
|
+
1, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1,
|
|
230
|
+
13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 15, 1, 15, 1, 16, 1, 16, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 20,
|
|
231
|
+
1, 20, 1, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1,
|
|
232
|
+
26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28,
|
|
233
|
+
1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1,
|
|
234
|
+
32, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 5, 34, 225, 8, 34, 10, 34, 12, 34, 228, 9, 34, 1, 35, 1, 35, 1, 36, 1, 36, 1,
|
|
235
|
+
36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 240, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1,
|
|
236
|
+
37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 256, 8, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3,
|
|
237
|
+
38, 266, 8, 38, 1, 39, 3, 39, 269, 8, 39, 1, 39, 4, 39, 272, 8, 39, 11, 39, 12, 39, 273, 1, 39, 1, 39, 5, 39, 278,
|
|
238
|
+
8, 39, 10, 39, 12, 39, 281, 9, 39, 3, 39, 283, 8, 39, 1, 39, 1, 39, 3, 39, 287, 8, 39, 1, 39, 4, 39, 290, 8, 39, 11,
|
|
239
|
+
39, 12, 39, 291, 3, 39, 294, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 4, 39, 300, 8, 39, 11, 39, 12, 39, 301, 3, 39, 304,
|
|
240
|
+
8, 39, 1, 40, 3, 40, 307, 8, 40, 1, 40, 4, 40, 310, 8, 40, 11, 40, 12, 40, 311, 1, 40, 1, 40, 1, 40, 1, 40, 4, 40,
|
|
241
|
+
318, 8, 40, 11, 40, 12, 40, 319, 3, 40, 322, 8, 40, 1, 41, 1, 41, 1, 41, 5, 41, 327, 8, 41, 10, 41, 12, 41, 330, 9,
|
|
242
|
+
41, 1, 41, 1, 41, 1, 41, 1, 41, 5, 41, 336, 8, 41, 10, 41, 12, 41, 339, 9, 41, 1, 41, 3, 41, 342, 8, 41, 1, 42, 4,
|
|
243
|
+
42, 345, 8, 42, 11, 42, 12, 42, 346, 1, 42, 1, 42, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1,
|
|
244
|
+
44, 1, 44, 3, 44, 362, 8, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 3, 44, 371, 8, 44, 1, 45, 1, 45, 1,
|
|
245
|
+
45, 1, 45, 3, 45, 377, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 4, 45, 389, 8,
|
|
246
|
+
45, 11, 45, 12, 45, 390, 3, 45, 393, 8, 45, 3, 45, 395, 8, 45, 1, 46, 1, 46, 1, 46, 3, 46, 400, 8, 46, 1, 46, 1, 46,
|
|
247
|
+
1, 46, 3, 46, 405, 8, 46, 1, 46, 1, 46, 1, 46, 3, 46, 410, 8, 46, 3, 46, 412, 8, 46, 1, 47, 1, 47, 1, 47, 3, 47,
|
|
248
|
+
417, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 0, 0, 50, 1, 1, 3, 2, 5, 3, 7, 4, 9, 5, 11, 6,
|
|
249
|
+
13, 7, 15, 8, 17, 9, 19, 10, 21, 11, 23, 12, 25, 13, 27, 14, 29, 15, 31, 16, 33, 17, 35, 18, 37, 19, 39, 20, 41, 21,
|
|
250
|
+
43, 22, 45, 23, 47, 24, 49, 25, 51, 26, 53, 27, 55, 28, 57, 29, 59, 30, 61, 31, 63, 32, 65, 33, 67, 34, 69, 35, 71,
|
|
251
|
+
36, 73, 37, 75, 38, 77, 39, 79, 40, 81, 41, 83, 42, 85, 43, 87, 0, 89, 0, 91, 0, 93, 0, 95, 0, 97, 0, 99, 0, 1, 0,
|
|
252
|
+
16, 4, 0, 36, 36, 65, 90, 95, 95, 97, 122, 5, 0, 36, 36, 48, 57, 65, 90, 95, 95, 97, 122, 2, 0, 43, 43, 45, 45, 1,
|
|
253
|
+
0, 39, 39, 1, 0, 34, 34, 3, 0, 9, 10, 13, 13, 32, 32, 1, 0, 48, 57, 1, 0, 48, 48, 1, 0, 49, 57, 1, 0, 49, 49, 1, 0,
|
|
254
|
+
48, 50, 1, 0, 49, 51, 1, 0, 48, 49, 1, 0, 48, 51, 1, 0, 48, 53, 3, 0, 48, 57, 65, 70, 97, 102, 453, 0, 1, 1, 0, 0,
|
|
255
|
+
0, 0, 3, 1, 0, 0, 0, 0, 5, 1, 0, 0, 0, 0, 7, 1, 0, 0, 0, 0, 9, 1, 0, 0, 0, 0, 11, 1, 0, 0, 0, 0, 13, 1, 0, 0, 0, 0,
|
|
256
|
+
15, 1, 0, 0, 0, 0, 17, 1, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 21, 1, 0, 0, 0, 0, 23, 1, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0,
|
|
257
|
+
27, 1, 0, 0, 0, 0, 29, 1, 0, 0, 0, 0, 31, 1, 0, 0, 0, 0, 33, 1, 0, 0, 0, 0, 35, 1, 0, 0, 0, 0, 37, 1, 0, 0, 0, 0,
|
|
258
|
+
39, 1, 0, 0, 0, 0, 41, 1, 0, 0, 0, 0, 43, 1, 0, 0, 0, 0, 45, 1, 0, 0, 0, 0, 47, 1, 0, 0, 0, 0, 49, 1, 0, 0, 0, 0,
|
|
259
|
+
51, 1, 0, 0, 0, 0, 53, 1, 0, 0, 0, 0, 55, 1, 0, 0, 0, 0, 57, 1, 0, 0, 0, 0, 59, 1, 0, 0, 0, 0, 61, 1, 0, 0, 0, 0,
|
|
260
|
+
63, 1, 0, 0, 0, 0, 65, 1, 0, 0, 0, 0, 67, 1, 0, 0, 0, 0, 69, 1, 0, 0, 0, 0, 71, 1, 0, 0, 0, 0, 73, 1, 0, 0, 0, 0,
|
|
261
|
+
75, 1, 0, 0, 0, 0, 77, 1, 0, 0, 0, 0, 79, 1, 0, 0, 0, 0, 81, 1, 0, 0, 0, 0, 83, 1, 0, 0, 0, 0, 85, 1, 0, 0, 0, 1,
|
|
262
|
+
101, 1, 0, 0, 0, 3, 103, 1, 0, 0, 0, 5, 105, 1, 0, 0, 0, 7, 109, 1, 0, 0, 0, 9, 111, 1, 0, 0, 0, 11, 113, 1, 0, 0,
|
|
263
|
+
0, 13, 115, 1, 0, 0, 0, 15, 117, 1, 0, 0, 0, 17, 119, 1, 0, 0, 0, 19, 121, 1, 0, 0, 0, 21, 126, 1, 0, 0, 0, 23, 132,
|
|
264
|
+
1, 0, 0, 0, 25, 137, 1, 0, 0, 0, 27, 146, 1, 0, 0, 0, 29, 155, 1, 0, 0, 0, 31, 157, 1, 0, 0, 0, 33, 159, 1, 0, 0, 0,
|
|
265
|
+
35, 161, 1, 0, 0, 0, 37, 163, 1, 0, 0, 0, 39, 166, 1, 0, 0, 0, 41, 168, 1, 0, 0, 0, 43, 170, 1, 0, 0, 0, 45, 173, 1,
|
|
266
|
+
0, 0, 0, 47, 175, 1, 0, 0, 0, 49, 178, 1, 0, 0, 0, 51, 181, 1, 0, 0, 0, 53, 185, 1, 0, 0, 0, 55, 190, 1, 0, 0, 0,
|
|
267
|
+
57, 196, 1, 0, 0, 0, 59, 202, 1, 0, 0, 0, 61, 209, 1, 0, 0, 0, 63, 213, 1, 0, 0, 0, 65, 216, 1, 0, 0, 0, 67, 219, 1,
|
|
268
|
+
0, 0, 0, 69, 222, 1, 0, 0, 0, 71, 229, 1, 0, 0, 0, 73, 239, 1, 0, 0, 0, 75, 255, 1, 0, 0, 0, 77, 265, 1, 0, 0, 0,
|
|
269
|
+
79, 303, 1, 0, 0, 0, 81, 321, 1, 0, 0, 0, 83, 341, 1, 0, 0, 0, 85, 344, 1, 0, 0, 0, 87, 350, 1, 0, 0, 0, 89, 352, 1,
|
|
270
|
+
0, 0, 0, 91, 376, 1, 0, 0, 0, 93, 411, 1, 0, 0, 0, 95, 413, 1, 0, 0, 0, 97, 418, 1, 0, 0, 0, 99, 424, 1, 0, 0, 0,
|
|
271
|
+
101, 102, 5, 40, 0, 0, 102, 2, 1, 0, 0, 0, 103, 104, 5, 41, 0, 0, 104, 4, 1, 0, 0, 0, 105, 106, 5, 110, 0, 0, 106,
|
|
272
|
+
107, 5, 111, 0, 0, 107, 108, 5, 116, 0, 0, 108, 6, 1, 0, 0, 0, 109, 110, 5, 33, 0, 0, 110, 8, 1, 0, 0, 0, 111, 112,
|
|
273
|
+
5, 46, 0, 0, 112, 10, 1, 0, 0, 0, 113, 114, 5, 64, 0, 0, 114, 12, 1, 0, 0, 0, 115, 116, 5, 91, 0, 0, 116, 14, 1, 0,
|
|
274
|
+
0, 0, 117, 118, 5, 44, 0, 0, 118, 16, 1, 0, 0, 0, 119, 120, 5, 93, 0, 0, 120, 18, 1, 0, 0, 0, 121, 122, 5, 116, 0,
|
|
275
|
+
0, 122, 123, 5, 114, 0, 0, 123, 124, 5, 117, 0, 0, 124, 125, 5, 101, 0, 0, 125, 20, 1, 0, 0, 0, 126, 127, 5, 102, 0,
|
|
276
|
+
0, 127, 128, 5, 97, 0, 0, 128, 129, 5, 108, 0, 0, 129, 130, 5, 115, 0, 0, 130, 131, 5, 101, 0, 0, 131, 22, 1, 0, 0,
|
|
277
|
+
0, 132, 133, 5, 110, 0, 0, 133, 134, 5, 117, 0, 0, 134, 135, 5, 108, 0, 0, 135, 136, 5, 108, 0, 0, 136, 24, 1, 0, 0,
|
|
278
|
+
0, 137, 138, 5, 73, 0, 0, 138, 139, 5, 110, 0, 0, 139, 140, 5, 102, 0, 0, 140, 141, 5, 105, 0, 0, 141, 142, 5, 110,
|
|
279
|
+
0, 0, 142, 143, 5, 105, 0, 0, 143, 144, 5, 116, 0, 0, 144, 145, 5, 121, 0, 0, 145, 26, 1, 0, 0, 0, 146, 147, 5, 105,
|
|
280
|
+
0, 0, 147, 148, 5, 110, 0, 0, 148, 149, 5, 102, 0, 0, 149, 150, 5, 105, 0, 0, 150, 151, 5, 110, 0, 0, 151, 152, 5,
|
|
281
|
+
105, 0, 0, 152, 153, 5, 116, 0, 0, 153, 154, 5, 121, 0, 0, 154, 28, 1, 0, 0, 0, 155, 156, 5, 43, 0, 0, 156, 30, 1,
|
|
282
|
+
0, 0, 0, 157, 158, 5, 45, 0, 0, 158, 32, 1, 0, 0, 0, 159, 160, 5, 42, 0, 0, 160, 34, 1, 0, 0, 0, 161, 162, 5, 47, 0,
|
|
283
|
+
0, 162, 36, 1, 0, 0, 0, 163, 164, 5, 60, 0, 0, 164, 165, 5, 61, 0, 0, 165, 38, 1, 0, 0, 0, 166, 167, 5, 60, 0, 0,
|
|
284
|
+
167, 40, 1, 0, 0, 0, 168, 169, 5, 62, 0, 0, 169, 42, 1, 0, 0, 0, 170, 171, 5, 62, 0, 0, 171, 172, 5, 61, 0, 0, 172,
|
|
285
|
+
44, 1, 0, 0, 0, 173, 174, 5, 61, 0, 0, 174, 46, 1, 0, 0, 0, 175, 176, 5, 33, 0, 0, 176, 177, 5, 61, 0, 0, 177, 48,
|
|
286
|
+
1, 0, 0, 0, 178, 179, 5, 105, 0, 0, 179, 180, 5, 110, 0, 0, 180, 50, 1, 0, 0, 0, 181, 182, 5, 33, 0, 0, 182, 183, 5,
|
|
287
|
+
105, 0, 0, 183, 184, 5, 110, 0, 0, 184, 52, 1, 0, 0, 0, 185, 186, 5, 108, 0, 0, 186, 187, 5, 105, 0, 0, 187, 188, 5,
|
|
288
|
+
107, 0, 0, 188, 189, 5, 101, 0, 0, 189, 54, 1, 0, 0, 0, 190, 191, 5, 33, 0, 0, 191, 192, 5, 108, 0, 0, 192, 193, 5,
|
|
289
|
+
105, 0, 0, 193, 194, 5, 107, 0, 0, 194, 195, 5, 101, 0, 0, 195, 56, 1, 0, 0, 0, 196, 197, 5, 105, 0, 0, 197, 198, 5,
|
|
290
|
+
108, 0, 0, 198, 199, 5, 105, 0, 0, 199, 200, 5, 107, 0, 0, 200, 201, 5, 101, 0, 0, 201, 58, 1, 0, 0, 0, 202, 203, 5,
|
|
291
|
+
33, 0, 0, 203, 204, 5, 105, 0, 0, 204, 205, 5, 108, 0, 0, 205, 206, 5, 105, 0, 0, 206, 207, 5, 107, 0, 0, 207, 208,
|
|
292
|
+
5, 101, 0, 0, 208, 60, 1, 0, 0, 0, 209, 210, 5, 97, 0, 0, 210, 211, 5, 110, 0, 0, 211, 212, 5, 100, 0, 0, 212, 62,
|
|
293
|
+
1, 0, 0, 0, 213, 214, 5, 111, 0, 0, 214, 215, 5, 114, 0, 0, 215, 64, 1, 0, 0, 0, 216, 217, 5, 38, 0, 0, 217, 218, 5,
|
|
294
|
+
38, 0, 0, 218, 66, 1, 0, 0, 0, 219, 220, 5, 124, 0, 0, 220, 221, 5, 124, 0, 0, 221, 68, 1, 0, 0, 0, 222, 226, 7, 0,
|
|
295
|
+
0, 0, 223, 225, 7, 1, 0, 0, 224, 223, 1, 0, 0, 0, 225, 228, 1, 0, 0, 0, 226, 224, 1, 0, 0, 0, 226, 227, 1, 0, 0, 0,
|
|
296
|
+
227, 70, 1, 0, 0, 0, 228, 226, 1, 0, 0, 0, 229, 230, 7, 2, 0, 0, 230, 72, 1, 0, 0, 0, 231, 232, 5, 39, 0, 0, 232,
|
|
297
|
+
233, 3, 89, 44, 0, 233, 234, 5, 39, 0, 0, 234, 240, 1, 0, 0, 0, 235, 236, 5, 34, 0, 0, 236, 237, 3, 89, 44, 0, 237,
|
|
298
|
+
238, 5, 34, 0, 0, 238, 240, 1, 0, 0, 0, 239, 231, 1, 0, 0, 0, 239, 235, 1, 0, 0, 0, 240, 74, 1, 0, 0, 0, 241, 242,
|
|
299
|
+
5, 39, 0, 0, 242, 243, 3, 89, 44, 0, 243, 244, 5, 84, 0, 0, 244, 245, 3, 91, 45, 0, 245, 246, 3, 93, 46, 0, 246,
|
|
300
|
+
247, 5, 39, 0, 0, 247, 256, 1, 0, 0, 0, 248, 249, 5, 34, 0, 0, 249, 250, 3, 89, 44, 0, 250, 251, 5, 84, 0, 0, 251,
|
|
301
|
+
252, 3, 91, 45, 0, 252, 253, 3, 93, 46, 0, 253, 254, 5, 34, 0, 0, 254, 256, 1, 0, 0, 0, 255, 241, 1, 0, 0, 0, 255,
|
|
302
|
+
248, 1, 0, 0, 0, 256, 76, 1, 0, 0, 0, 257, 258, 5, 39, 0, 0, 258, 259, 3, 91, 45, 0, 259, 260, 5, 39, 0, 0, 260,
|
|
303
|
+
266, 1, 0, 0, 0, 261, 262, 5, 34, 0, 0, 262, 263, 3, 91, 45, 0, 263, 264, 5, 34, 0, 0, 264, 266, 1, 0, 0, 0, 265,
|
|
304
|
+
257, 1, 0, 0, 0, 265, 261, 1, 0, 0, 0, 266, 78, 1, 0, 0, 0, 267, 269, 3, 71, 35, 0, 268, 267, 1, 0, 0, 0, 268, 269,
|
|
305
|
+
1, 0, 0, 0, 269, 271, 1, 0, 0, 0, 270, 272, 3, 87, 43, 0, 271, 270, 1, 0, 0, 0, 272, 273, 1, 0, 0, 0, 273, 271, 1,
|
|
306
|
+
0, 0, 0, 273, 274, 1, 0, 0, 0, 274, 282, 1, 0, 0, 0, 275, 279, 5, 46, 0, 0, 276, 278, 3, 87, 43, 0, 277, 276, 1, 0,
|
|
307
|
+
0, 0, 278, 281, 1, 0, 0, 0, 279, 277, 1, 0, 0, 0, 279, 280, 1, 0, 0, 0, 280, 283, 1, 0, 0, 0, 281, 279, 1, 0, 0, 0,
|
|
308
|
+
282, 275, 1, 0, 0, 0, 282, 283, 1, 0, 0, 0, 283, 293, 1, 0, 0, 0, 284, 286, 5, 69, 0, 0, 285, 287, 7, 2, 0, 0, 286,
|
|
309
|
+
285, 1, 0, 0, 0, 286, 287, 1, 0, 0, 0, 287, 289, 1, 0, 0, 0, 288, 290, 3, 87, 43, 0, 289, 288, 1, 0, 0, 0, 290, 291,
|
|
310
|
+
1, 0, 0, 0, 291, 289, 1, 0, 0, 0, 291, 292, 1, 0, 0, 0, 292, 294, 1, 0, 0, 0, 293, 284, 1, 0, 0, 0, 293, 294, 1, 0,
|
|
311
|
+
0, 0, 294, 304, 1, 0, 0, 0, 295, 296, 5, 48, 0, 0, 296, 297, 5, 120, 0, 0, 297, 299, 1, 0, 0, 0, 298, 300, 3, 99,
|
|
312
|
+
49, 0, 299, 298, 1, 0, 0, 0, 300, 301, 1, 0, 0, 0, 301, 299, 1, 0, 0, 0, 301, 302, 1, 0, 0, 0, 302, 304, 1, 0, 0, 0,
|
|
313
|
+
303, 268, 1, 0, 0, 0, 303, 295, 1, 0, 0, 0, 304, 80, 1, 0, 0, 0, 305, 307, 3, 71, 35, 0, 306, 305, 1, 0, 0, 0, 306,
|
|
314
|
+
307, 1, 0, 0, 0, 307, 309, 1, 0, 0, 0, 308, 310, 3, 87, 43, 0, 309, 308, 1, 0, 0, 0, 310, 311, 1, 0, 0, 0, 311, 309,
|
|
315
|
+
1, 0, 0, 0, 311, 312, 1, 0, 0, 0, 312, 322, 1, 0, 0, 0, 313, 314, 5, 48, 0, 0, 314, 315, 5, 120, 0, 0, 315, 317, 1,
|
|
316
|
+
0, 0, 0, 316, 318, 3, 99, 49, 0, 317, 316, 1, 0, 0, 0, 318, 319, 1, 0, 0, 0, 319, 317, 1, 0, 0, 0, 319, 320, 1, 0,
|
|
317
|
+
0, 0, 320, 322, 1, 0, 0, 0, 321, 306, 1, 0, 0, 0, 321, 313, 1, 0, 0, 0, 322, 82, 1, 0, 0, 0, 323, 328, 5, 39, 0, 0,
|
|
318
|
+
324, 327, 3, 95, 47, 0, 325, 327, 8, 3, 0, 0, 326, 324, 1, 0, 0, 0, 326, 325, 1, 0, 0, 0, 327, 330, 1, 0, 0, 0, 328,
|
|
319
|
+
326, 1, 0, 0, 0, 328, 329, 1, 0, 0, 0, 329, 331, 1, 0, 0, 0, 330, 328, 1, 0, 0, 0, 331, 342, 5, 39, 0, 0, 332, 337,
|
|
320
|
+
5, 34, 0, 0, 333, 336, 3, 95, 47, 0, 334, 336, 8, 4, 0, 0, 335, 333, 1, 0, 0, 0, 335, 334, 1, 0, 0, 0, 336, 339, 1,
|
|
321
|
+
0, 0, 0, 337, 335, 1, 0, 0, 0, 337, 338, 1, 0, 0, 0, 338, 340, 1, 0, 0, 0, 339, 337, 1, 0, 0, 0, 340, 342, 5, 34, 0,
|
|
322
|
+
0, 341, 323, 1, 0, 0, 0, 341, 332, 1, 0, 0, 0, 342, 84, 1, 0, 0, 0, 343, 345, 7, 5, 0, 0, 344, 343, 1, 0, 0, 0, 345,
|
|
323
|
+
346, 1, 0, 0, 0, 346, 344, 1, 0, 0, 0, 346, 347, 1, 0, 0, 0, 347, 348, 1, 0, 0, 0, 348, 349, 6, 42, 0, 0, 349, 86,
|
|
324
|
+
1, 0, 0, 0, 350, 351, 7, 6, 0, 0, 351, 88, 1, 0, 0, 0, 352, 353, 7, 6, 0, 0, 353, 354, 7, 6, 0, 0, 354, 355, 7, 6,
|
|
325
|
+
0, 0, 355, 356, 7, 6, 0, 0, 356, 361, 5, 45, 0, 0, 357, 358, 7, 7, 0, 0, 358, 362, 7, 8, 0, 0, 359, 360, 7, 9, 0, 0,
|
|
326
|
+
360, 362, 7, 10, 0, 0, 361, 357, 1, 0, 0, 0, 361, 359, 1, 0, 0, 0, 362, 363, 1, 0, 0, 0, 363, 370, 5, 45, 0, 0, 364,
|
|
327
|
+
365, 7, 11, 0, 0, 365, 371, 7, 7, 0, 0, 366, 367, 7, 10, 0, 0, 367, 371, 7, 8, 0, 0, 368, 369, 5, 51, 0, 0, 369,
|
|
328
|
+
371, 5, 49, 0, 0, 370, 364, 1, 0, 0, 0, 370, 366, 1, 0, 0, 0, 370, 368, 1, 0, 0, 0, 371, 90, 1, 0, 0, 0, 372, 373,
|
|
329
|
+
7, 12, 0, 0, 373, 377, 7, 6, 0, 0, 374, 375, 5, 50, 0, 0, 375, 377, 7, 13, 0, 0, 376, 372, 1, 0, 0, 0, 376, 374, 1,
|
|
330
|
+
0, 0, 0, 377, 378, 1, 0, 0, 0, 378, 379, 5, 58, 0, 0, 379, 380, 7, 14, 0, 0, 380, 381, 7, 6, 0, 0, 381, 394, 1, 0,
|
|
331
|
+
0, 0, 382, 383, 5, 58, 0, 0, 383, 384, 7, 14, 0, 0, 384, 385, 7, 6, 0, 0, 385, 392, 1, 0, 0, 0, 386, 388, 5, 46, 0,
|
|
332
|
+
0, 387, 389, 7, 6, 0, 0, 388, 387, 1, 0, 0, 0, 389, 390, 1, 0, 0, 0, 390, 388, 1, 0, 0, 0, 390, 391, 1, 0, 0, 0,
|
|
333
|
+
391, 393, 1, 0, 0, 0, 392, 386, 1, 0, 0, 0, 392, 393, 1, 0, 0, 0, 393, 395, 1, 0, 0, 0, 394, 382, 1, 0, 0, 0, 394,
|
|
334
|
+
395, 1, 0, 0, 0, 395, 92, 1, 0, 0, 0, 396, 412, 5, 90, 0, 0, 397, 404, 7, 2, 0, 0, 398, 400, 7, 12, 0, 0, 399, 398,
|
|
335
|
+
1, 0, 0, 0, 399, 400, 1, 0, 0, 0, 400, 401, 1, 0, 0, 0, 401, 405, 7, 6, 0, 0, 402, 403, 5, 50, 0, 0, 403, 405, 7,
|
|
336
|
+
13, 0, 0, 404, 399, 1, 0, 0, 0, 404, 402, 1, 0, 0, 0, 405, 409, 1, 0, 0, 0, 406, 407, 5, 58, 0, 0, 407, 408, 7, 14,
|
|
337
|
+
0, 0, 408, 410, 7, 6, 0, 0, 409, 406, 1, 0, 0, 0, 409, 410, 1, 0, 0, 0, 410, 412, 1, 0, 0, 0, 411, 396, 1, 0, 0, 0,
|
|
338
|
+
411, 397, 1, 0, 0, 0, 412, 94, 1, 0, 0, 0, 413, 416, 5, 92, 0, 0, 414, 417, 3, 97, 48, 0, 415, 417, 9, 0, 0, 0, 416,
|
|
339
|
+
414, 1, 0, 0, 0, 416, 415, 1, 0, 0, 0, 417, 96, 1, 0, 0, 0, 418, 419, 5, 117, 0, 0, 419, 420, 3, 99, 49, 0, 420,
|
|
340
|
+
421, 3, 99, 49, 0, 421, 422, 3, 99, 49, 0, 422, 423, 3, 99, 49, 0, 423, 98, 1, 0, 0, 0, 424, 425, 7, 15, 0, 0, 425,
|
|
341
|
+
100, 1, 0, 0, 0, 35, 0, 226, 239, 255, 265, 268, 273, 279, 282, 286, 291, 293, 301, 303, 306, 311, 319, 321, 326,
|
|
342
|
+
328, 335, 337, 341, 346, 361, 370, 376, 390, 392, 394, 399, 404, 409, 411, 416, 1, 0, 1, 0,
|
|
134
343
|
];
|
|
135
|
-
OpraFilterLexer._serializedATN = [4, 0, 43, 426, 6, -1, 2, 0,
|
|
136
|
-
7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9,
|
|
137
|
-
7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7,
|
|
138
|
-
16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23,
|
|
139
|
-
2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2,
|
|
140
|
-
31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38,
|
|
141
|
-
7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7,
|
|
142
|
-
45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 1, 0, 1, 0, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2,
|
|
143
|
-
1, 2, 1, 3, 1, 3, 1, 4, 1, 4, 1, 5, 1, 5, 1, 6, 1, 6, 1, 7, 1, 7, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9,
|
|
144
|
-
1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1,
|
|
145
|
-
12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13,
|
|
146
|
-
1, 14, 1, 14, 1, 15, 1, 15, 1, 16, 1, 16, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 20, 1,
|
|
147
|
-
20, 1, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25,
|
|
148
|
-
1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1,
|
|
149
|
-
28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30,
|
|
150
|
-
1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 5, 34, 225, 8, 34, 10,
|
|
151
|
-
34, 12, 34, 228, 9, 34, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36,
|
|
152
|
-
240, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1,
|
|
153
|
-
37, 1, 37, 3, 37, 256, 8, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 266,
|
|
154
|
-
8, 38, 1, 39, 3, 39, 269, 8, 39, 1, 39, 4, 39, 272, 8, 39, 11, 39, 12, 39, 273, 1, 39, 1, 39, 5,
|
|
155
|
-
39, 278, 8, 39, 10, 39, 12, 39, 281, 9, 39, 3, 39, 283, 8, 39, 1, 39, 1, 39, 3, 39, 287, 8, 39,
|
|
156
|
-
1, 39, 4, 39, 290, 8, 39, 11, 39, 12, 39, 291, 3, 39, 294, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 4,
|
|
157
|
-
39, 300, 8, 39, 11, 39, 12, 39, 301, 3, 39, 304, 8, 39, 1, 40, 3, 40, 307, 8, 40, 1, 40, 4, 40,
|
|
158
|
-
310, 8, 40, 11, 40, 12, 40, 311, 1, 40, 1, 40, 1, 40, 1, 40, 4, 40, 318, 8, 40, 11, 40, 12, 40,
|
|
159
|
-
319, 3, 40, 322, 8, 40, 1, 41, 1, 41, 1, 41, 5, 41, 327, 8, 41, 10, 41, 12, 41, 330, 9, 41, 1, 41,
|
|
160
|
-
1, 41, 1, 41, 1, 41, 5, 41, 336, 8, 41, 10, 41, 12, 41, 339, 9, 41, 1, 41, 3, 41, 342, 8, 41, 1,
|
|
161
|
-
42, 4, 42, 345, 8, 42, 11, 42, 12, 42, 346, 1, 42, 1, 42, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44,
|
|
162
|
-
1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 3, 44, 362, 8, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1,
|
|
163
|
-
44, 3, 44, 371, 8, 44, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 377, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45,
|
|
164
|
-
1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 4, 45, 389, 8, 45, 11, 45, 12, 45, 390, 3, 45, 393, 8,
|
|
165
|
-
45, 3, 45, 395, 8, 45, 1, 46, 1, 46, 1, 46, 3, 46, 400, 8, 46, 1, 46, 1, 46, 1, 46, 3, 46, 405, 8,
|
|
166
|
-
46, 1, 46, 1, 46, 1, 46, 3, 46, 410, 8, 46, 3, 46, 412, 8, 46, 1, 47, 1, 47, 1, 47, 3, 47, 417, 8,
|
|
167
|
-
47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 0, 0, 50, 1, 1, 3, 2, 5, 3, 7, 4, 9, 5, 11,
|
|
168
|
-
6, 13, 7, 15, 8, 17, 9, 19, 10, 21, 11, 23, 12, 25, 13, 27, 14, 29, 15, 31, 16, 33, 17, 35, 18,
|
|
169
|
-
37, 19, 39, 20, 41, 21, 43, 22, 45, 23, 47, 24, 49, 25, 51, 26, 53, 27, 55, 28, 57, 29, 59, 30,
|
|
170
|
-
61, 31, 63, 32, 65, 33, 67, 34, 69, 35, 71, 36, 73, 37, 75, 38, 77, 39, 79, 40, 81, 41, 83, 42,
|
|
171
|
-
85, 43, 87, 0, 89, 0, 91, 0, 93, 0, 95, 0, 97, 0, 99, 0, 1, 0, 16, 4, 0, 36, 36, 65, 90, 95, 95, 97,
|
|
172
|
-
122, 5, 0, 36, 36, 48, 57, 65, 90, 95, 95, 97, 122, 2, 0, 43, 43, 45, 45, 1, 0, 39, 39, 1, 0, 34,
|
|
173
|
-
34, 3, 0, 9, 10, 13, 13, 32, 32, 1, 0, 48, 57, 1, 0, 48, 48, 1, 0, 49, 57, 1, 0, 49, 49, 1, 0, 48,
|
|
174
|
-
50, 1, 0, 49, 51, 1, 0, 48, 49, 1, 0, 48, 51, 1, 0, 48, 53, 3, 0, 48, 57, 65, 70, 97, 102, 453, 0,
|
|
175
|
-
1, 1, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 5, 1, 0, 0, 0, 0, 7, 1, 0, 0, 0, 0, 9, 1, 0, 0, 0, 0, 11, 1, 0, 0, 0,
|
|
176
|
-
0, 13, 1, 0, 0, 0, 0, 15, 1, 0, 0, 0, 0, 17, 1, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 21, 1, 0, 0, 0, 0, 23, 1,
|
|
177
|
-
0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 27, 1, 0, 0, 0, 0, 29, 1, 0, 0, 0, 0, 31, 1, 0, 0, 0, 0, 33, 1, 0, 0, 0,
|
|
178
|
-
0, 35, 1, 0, 0, 0, 0, 37, 1, 0, 0, 0, 0, 39, 1, 0, 0, 0, 0, 41, 1, 0, 0, 0, 0, 43, 1, 0, 0, 0, 0, 45, 1,
|
|
179
|
-
0, 0, 0, 0, 47, 1, 0, 0, 0, 0, 49, 1, 0, 0, 0, 0, 51, 1, 0, 0, 0, 0, 53, 1, 0, 0, 0, 0, 55, 1, 0, 0, 0,
|
|
180
|
-
0, 57, 1, 0, 0, 0, 0, 59, 1, 0, 0, 0, 0, 61, 1, 0, 0, 0, 0, 63, 1, 0, 0, 0, 0, 65, 1, 0, 0, 0, 0, 67, 1,
|
|
181
|
-
0, 0, 0, 0, 69, 1, 0, 0, 0, 0, 71, 1, 0, 0, 0, 0, 73, 1, 0, 0, 0, 0, 75, 1, 0, 0, 0, 0, 77, 1, 0, 0, 0,
|
|
182
|
-
0, 79, 1, 0, 0, 0, 0, 81, 1, 0, 0, 0, 0, 83, 1, 0, 0, 0, 0, 85, 1, 0, 0, 0, 1, 101, 1, 0, 0, 0, 3, 103,
|
|
183
|
-
1, 0, 0, 0, 5, 105, 1, 0, 0, 0, 7, 109, 1, 0, 0, 0, 9, 111, 1, 0, 0, 0, 11, 113, 1, 0, 0, 0, 13, 115,
|
|
184
|
-
1, 0, 0, 0, 15, 117, 1, 0, 0, 0, 17, 119, 1, 0, 0, 0, 19, 121, 1, 0, 0, 0, 21, 126, 1, 0, 0, 0, 23,
|
|
185
|
-
132, 1, 0, 0, 0, 25, 137, 1, 0, 0, 0, 27, 146, 1, 0, 0, 0, 29, 155, 1, 0, 0, 0, 31, 157, 1, 0, 0, 0,
|
|
186
|
-
33, 159, 1, 0, 0, 0, 35, 161, 1, 0, 0, 0, 37, 163, 1, 0, 0, 0, 39, 166, 1, 0, 0, 0, 41, 168, 1, 0,
|
|
187
|
-
0, 0, 43, 170, 1, 0, 0, 0, 45, 173, 1, 0, 0, 0, 47, 175, 1, 0, 0, 0, 49, 178, 1, 0, 0, 0, 51, 181,
|
|
188
|
-
1, 0, 0, 0, 53, 185, 1, 0, 0, 0, 55, 190, 1, 0, 0, 0, 57, 196, 1, 0, 0, 0, 59, 202, 1, 0, 0, 0, 61,
|
|
189
|
-
209, 1, 0, 0, 0, 63, 213, 1, 0, 0, 0, 65, 216, 1, 0, 0, 0, 67, 219, 1, 0, 0, 0, 69, 222, 1, 0, 0, 0,
|
|
190
|
-
71, 229, 1, 0, 0, 0, 73, 239, 1, 0, 0, 0, 75, 255, 1, 0, 0, 0, 77, 265, 1, 0, 0, 0, 79, 303, 1, 0,
|
|
191
|
-
0, 0, 81, 321, 1, 0, 0, 0, 83, 341, 1, 0, 0, 0, 85, 344, 1, 0, 0, 0, 87, 350, 1, 0, 0, 0, 89, 352,
|
|
192
|
-
1, 0, 0, 0, 91, 376, 1, 0, 0, 0, 93, 411, 1, 0, 0, 0, 95, 413, 1, 0, 0, 0, 97, 418, 1, 0, 0, 0, 99,
|
|
193
|
-
424, 1, 0, 0, 0, 101, 102, 5, 40, 0, 0, 102, 2, 1, 0, 0, 0, 103, 104, 5, 41, 0, 0, 104, 4, 1, 0, 0,
|
|
194
|
-
0, 105, 106, 5, 110, 0, 0, 106, 107, 5, 111, 0, 0, 107, 108, 5, 116, 0, 0, 108, 6, 1, 0, 0, 0, 109,
|
|
195
|
-
110, 5, 33, 0, 0, 110, 8, 1, 0, 0, 0, 111, 112, 5, 46, 0, 0, 112, 10, 1, 0, 0, 0, 113, 114, 5, 64,
|
|
196
|
-
0, 0, 114, 12, 1, 0, 0, 0, 115, 116, 5, 91, 0, 0, 116, 14, 1, 0, 0, 0, 117, 118, 5, 44, 0, 0, 118,
|
|
197
|
-
16, 1, 0, 0, 0, 119, 120, 5, 93, 0, 0, 120, 18, 1, 0, 0, 0, 121, 122, 5, 116, 0, 0, 122, 123, 5,
|
|
198
|
-
114, 0, 0, 123, 124, 5, 117, 0, 0, 124, 125, 5, 101, 0, 0, 125, 20, 1, 0, 0, 0, 126, 127, 5, 102,
|
|
199
|
-
0, 0, 127, 128, 5, 97, 0, 0, 128, 129, 5, 108, 0, 0, 129, 130, 5, 115, 0, 0, 130, 131, 5, 101,
|
|
200
|
-
0, 0, 131, 22, 1, 0, 0, 0, 132, 133, 5, 110, 0, 0, 133, 134, 5, 117, 0, 0, 134, 135, 5, 108, 0,
|
|
201
|
-
0, 135, 136, 5, 108, 0, 0, 136, 24, 1, 0, 0, 0, 137, 138, 5, 73, 0, 0, 138, 139, 5, 110, 0, 0, 139,
|
|
202
|
-
140, 5, 102, 0, 0, 140, 141, 5, 105, 0, 0, 141, 142, 5, 110, 0, 0, 142, 143, 5, 105, 0, 0, 143,
|
|
203
|
-
144, 5, 116, 0, 0, 144, 145, 5, 121, 0, 0, 145, 26, 1, 0, 0, 0, 146, 147, 5, 105, 0, 0, 147, 148,
|
|
204
|
-
5, 110, 0, 0, 148, 149, 5, 102, 0, 0, 149, 150, 5, 105, 0, 0, 150, 151, 5, 110, 0, 0, 151, 152,
|
|
205
|
-
5, 105, 0, 0, 152, 153, 5, 116, 0, 0, 153, 154, 5, 121, 0, 0, 154, 28, 1, 0, 0, 0, 155, 156, 5,
|
|
206
|
-
43, 0, 0, 156, 30, 1, 0, 0, 0, 157, 158, 5, 45, 0, 0, 158, 32, 1, 0, 0, 0, 159, 160, 5, 42, 0, 0,
|
|
207
|
-
160, 34, 1, 0, 0, 0, 161, 162, 5, 47, 0, 0, 162, 36, 1, 0, 0, 0, 163, 164, 5, 60, 0, 0, 164, 165,
|
|
208
|
-
5, 61, 0, 0, 165, 38, 1, 0, 0, 0, 166, 167, 5, 60, 0, 0, 167, 40, 1, 0, 0, 0, 168, 169, 5, 62, 0,
|
|
209
|
-
0, 169, 42, 1, 0, 0, 0, 170, 171, 5, 62, 0, 0, 171, 172, 5, 61, 0, 0, 172, 44, 1, 0, 0, 0, 173, 174,
|
|
210
|
-
5, 61, 0, 0, 174, 46, 1, 0, 0, 0, 175, 176, 5, 33, 0, 0, 176, 177, 5, 61, 0, 0, 177, 48, 1, 0, 0,
|
|
211
|
-
0, 178, 179, 5, 105, 0, 0, 179, 180, 5, 110, 0, 0, 180, 50, 1, 0, 0, 0, 181, 182, 5, 33, 0, 0, 182,
|
|
212
|
-
183, 5, 105, 0, 0, 183, 184, 5, 110, 0, 0, 184, 52, 1, 0, 0, 0, 185, 186, 5, 108, 0, 0, 186, 187,
|
|
213
|
-
5, 105, 0, 0, 187, 188, 5, 107, 0, 0, 188, 189, 5, 101, 0, 0, 189, 54, 1, 0, 0, 0, 190, 191, 5,
|
|
214
|
-
33, 0, 0, 191, 192, 5, 108, 0, 0, 192, 193, 5, 105, 0, 0, 193, 194, 5, 107, 0, 0, 194, 195, 5,
|
|
215
|
-
101, 0, 0, 195, 56, 1, 0, 0, 0, 196, 197, 5, 105, 0, 0, 197, 198, 5, 108, 0, 0, 198, 199, 5, 105,
|
|
216
|
-
0, 0, 199, 200, 5, 107, 0, 0, 200, 201, 5, 101, 0, 0, 201, 58, 1, 0, 0, 0, 202, 203, 5, 33, 0, 0,
|
|
217
|
-
203, 204, 5, 105, 0, 0, 204, 205, 5, 108, 0, 0, 205, 206, 5, 105, 0, 0, 206, 207, 5, 107, 0, 0,
|
|
218
|
-
207, 208, 5, 101, 0, 0, 208, 60, 1, 0, 0, 0, 209, 210, 5, 97, 0, 0, 210, 211, 5, 110, 0, 0, 211,
|
|
219
|
-
212, 5, 100, 0, 0, 212, 62, 1, 0, 0, 0, 213, 214, 5, 111, 0, 0, 214, 215, 5, 114, 0, 0, 215, 64,
|
|
220
|
-
1, 0, 0, 0, 216, 217, 5, 38, 0, 0, 217, 218, 5, 38, 0, 0, 218, 66, 1, 0, 0, 0, 219, 220, 5, 124,
|
|
221
|
-
0, 0, 220, 221, 5, 124, 0, 0, 221, 68, 1, 0, 0, 0, 222, 226, 7, 0, 0, 0, 223, 225, 7, 1, 0, 0, 224,
|
|
222
|
-
223, 1, 0, 0, 0, 225, 228, 1, 0, 0, 0, 226, 224, 1, 0, 0, 0, 226, 227, 1, 0, 0, 0, 227, 70, 1, 0,
|
|
223
|
-
0, 0, 228, 226, 1, 0, 0, 0, 229, 230, 7, 2, 0, 0, 230, 72, 1, 0, 0, 0, 231, 232, 5, 39, 0, 0, 232,
|
|
224
|
-
233, 3, 89, 44, 0, 233, 234, 5, 39, 0, 0, 234, 240, 1, 0, 0, 0, 235, 236, 5, 34, 0, 0, 236, 237,
|
|
225
|
-
3, 89, 44, 0, 237, 238, 5, 34, 0, 0, 238, 240, 1, 0, 0, 0, 239, 231, 1, 0, 0, 0, 239, 235, 1, 0,
|
|
226
|
-
0, 0, 240, 74, 1, 0, 0, 0, 241, 242, 5, 39, 0, 0, 242, 243, 3, 89, 44, 0, 243, 244, 5, 84, 0, 0,
|
|
227
|
-
244, 245, 3, 91, 45, 0, 245, 246, 3, 93, 46, 0, 246, 247, 5, 39, 0, 0, 247, 256, 1, 0, 0, 0, 248,
|
|
228
|
-
249, 5, 34, 0, 0, 249, 250, 3, 89, 44, 0, 250, 251, 5, 84, 0, 0, 251, 252, 3, 91, 45, 0, 252, 253,
|
|
229
|
-
3, 93, 46, 0, 253, 254, 5, 34, 0, 0, 254, 256, 1, 0, 0, 0, 255, 241, 1, 0, 0, 0, 255, 248, 1, 0,
|
|
230
|
-
0, 0, 256, 76, 1, 0, 0, 0, 257, 258, 5, 39, 0, 0, 258, 259, 3, 91, 45, 0, 259, 260, 5, 39, 0, 0,
|
|
231
|
-
260, 266, 1, 0, 0, 0, 261, 262, 5, 34, 0, 0, 262, 263, 3, 91, 45, 0, 263, 264, 5, 34, 0, 0, 264,
|
|
232
|
-
266, 1, 0, 0, 0, 265, 257, 1, 0, 0, 0, 265, 261, 1, 0, 0, 0, 266, 78, 1, 0, 0, 0, 267, 269, 3, 71,
|
|
233
|
-
35, 0, 268, 267, 1, 0, 0, 0, 268, 269, 1, 0, 0, 0, 269, 271, 1, 0, 0, 0, 270, 272, 3, 87, 43, 0,
|
|
234
|
-
271, 270, 1, 0, 0, 0, 272, 273, 1, 0, 0, 0, 273, 271, 1, 0, 0, 0, 273, 274, 1, 0, 0, 0, 274, 282,
|
|
235
|
-
1, 0, 0, 0, 275, 279, 5, 46, 0, 0, 276, 278, 3, 87, 43, 0, 277, 276, 1, 0, 0, 0, 278, 281, 1, 0,
|
|
236
|
-
0, 0, 279, 277, 1, 0, 0, 0, 279, 280, 1, 0, 0, 0, 280, 283, 1, 0, 0, 0, 281, 279, 1, 0, 0, 0, 282,
|
|
237
|
-
275, 1, 0, 0, 0, 282, 283, 1, 0, 0, 0, 283, 293, 1, 0, 0, 0, 284, 286, 5, 69, 0, 0, 285, 287, 7,
|
|
238
|
-
2, 0, 0, 286, 285, 1, 0, 0, 0, 286, 287, 1, 0, 0, 0, 287, 289, 1, 0, 0, 0, 288, 290, 3, 87, 43, 0,
|
|
239
|
-
289, 288, 1, 0, 0, 0, 290, 291, 1, 0, 0, 0, 291, 289, 1, 0, 0, 0, 291, 292, 1, 0, 0, 0, 292, 294,
|
|
240
|
-
1, 0, 0, 0, 293, 284, 1, 0, 0, 0, 293, 294, 1, 0, 0, 0, 294, 304, 1, 0, 0, 0, 295, 296, 5, 48, 0,
|
|
241
|
-
0, 296, 297, 5, 120, 0, 0, 297, 299, 1, 0, 0, 0, 298, 300, 3, 99, 49, 0, 299, 298, 1, 0, 0, 0, 300,
|
|
242
|
-
301, 1, 0, 0, 0, 301, 299, 1, 0, 0, 0, 301, 302, 1, 0, 0, 0, 302, 304, 1, 0, 0, 0, 303, 268, 1, 0,
|
|
243
|
-
0, 0, 303, 295, 1, 0, 0, 0, 304, 80, 1, 0, 0, 0, 305, 307, 3, 71, 35, 0, 306, 305, 1, 0, 0, 0, 306,
|
|
244
|
-
307, 1, 0, 0, 0, 307, 309, 1, 0, 0, 0, 308, 310, 3, 87, 43, 0, 309, 308, 1, 0, 0, 0, 310, 311, 1,
|
|
245
|
-
0, 0, 0, 311, 309, 1, 0, 0, 0, 311, 312, 1, 0, 0, 0, 312, 322, 1, 0, 0, 0, 313, 314, 5, 48, 0, 0,
|
|
246
|
-
314, 315, 5, 120, 0, 0, 315, 317, 1, 0, 0, 0, 316, 318, 3, 99, 49, 0, 317, 316, 1, 0, 0, 0, 318,
|
|
247
|
-
319, 1, 0, 0, 0, 319, 317, 1, 0, 0, 0, 319, 320, 1, 0, 0, 0, 320, 322, 1, 0, 0, 0, 321, 306, 1, 0,
|
|
248
|
-
0, 0, 321, 313, 1, 0, 0, 0, 322, 82, 1, 0, 0, 0, 323, 328, 5, 39, 0, 0, 324, 327, 3, 95, 47, 0, 325,
|
|
249
|
-
327, 8, 3, 0, 0, 326, 324, 1, 0, 0, 0, 326, 325, 1, 0, 0, 0, 327, 330, 1, 0, 0, 0, 328, 326, 1, 0,
|
|
250
|
-
0, 0, 328, 329, 1, 0, 0, 0, 329, 331, 1, 0, 0, 0, 330, 328, 1, 0, 0, 0, 331, 342, 5, 39, 0, 0, 332,
|
|
251
|
-
337, 5, 34, 0, 0, 333, 336, 3, 95, 47, 0, 334, 336, 8, 4, 0, 0, 335, 333, 1, 0, 0, 0, 335, 334,
|
|
252
|
-
1, 0, 0, 0, 336, 339, 1, 0, 0, 0, 337, 335, 1, 0, 0, 0, 337, 338, 1, 0, 0, 0, 338, 340, 1, 0, 0, 0,
|
|
253
|
-
339, 337, 1, 0, 0, 0, 340, 342, 5, 34, 0, 0, 341, 323, 1, 0, 0, 0, 341, 332, 1, 0, 0, 0, 342, 84,
|
|
254
|
-
1, 0, 0, 0, 343, 345, 7, 5, 0, 0, 344, 343, 1, 0, 0, 0, 345, 346, 1, 0, 0, 0, 346, 344, 1, 0, 0, 0,
|
|
255
|
-
346, 347, 1, 0, 0, 0, 347, 348, 1, 0, 0, 0, 348, 349, 6, 42, 0, 0, 349, 86, 1, 0, 0, 0, 350, 351,
|
|
256
|
-
7, 6, 0, 0, 351, 88, 1, 0, 0, 0, 352, 353, 7, 6, 0, 0, 353, 354, 7, 6, 0, 0, 354, 355, 7, 6, 0, 0,
|
|
257
|
-
355, 356, 7, 6, 0, 0, 356, 361, 5, 45, 0, 0, 357, 358, 7, 7, 0, 0, 358, 362, 7, 8, 0, 0, 359, 360,
|
|
258
|
-
7, 9, 0, 0, 360, 362, 7, 10, 0, 0, 361, 357, 1, 0, 0, 0, 361, 359, 1, 0, 0, 0, 362, 363, 1, 0, 0,
|
|
259
|
-
0, 363, 370, 5, 45, 0, 0, 364, 365, 7, 11, 0, 0, 365, 371, 7, 7, 0, 0, 366, 367, 7, 10, 0, 0, 367,
|
|
260
|
-
371, 7, 8, 0, 0, 368, 369, 5, 51, 0, 0, 369, 371, 5, 49, 0, 0, 370, 364, 1, 0, 0, 0, 370, 366, 1,
|
|
261
|
-
0, 0, 0, 370, 368, 1, 0, 0, 0, 371, 90, 1, 0, 0, 0, 372, 373, 7, 12, 0, 0, 373, 377, 7, 6, 0, 0, 374,
|
|
262
|
-
375, 5, 50, 0, 0, 375, 377, 7, 13, 0, 0, 376, 372, 1, 0, 0, 0, 376, 374, 1, 0, 0, 0, 377, 378, 1,
|
|
263
|
-
0, 0, 0, 378, 379, 5, 58, 0, 0, 379, 380, 7, 14, 0, 0, 380, 381, 7, 6, 0, 0, 381, 394, 1, 0, 0, 0,
|
|
264
|
-
382, 383, 5, 58, 0, 0, 383, 384, 7, 14, 0, 0, 384, 385, 7, 6, 0, 0, 385, 392, 1, 0, 0, 0, 386, 388,
|
|
265
|
-
5, 46, 0, 0, 387, 389, 7, 6, 0, 0, 388, 387, 1, 0, 0, 0, 389, 390, 1, 0, 0, 0, 390, 388, 1, 0, 0,
|
|
266
|
-
0, 390, 391, 1, 0, 0, 0, 391, 393, 1, 0, 0, 0, 392, 386, 1, 0, 0, 0, 392, 393, 1, 0, 0, 0, 393, 395,
|
|
267
|
-
1, 0, 0, 0, 394, 382, 1, 0, 0, 0, 394, 395, 1, 0, 0, 0, 395, 92, 1, 0, 0, 0, 396, 412, 5, 90, 0, 0,
|
|
268
|
-
397, 404, 7, 2, 0, 0, 398, 400, 7, 12, 0, 0, 399, 398, 1, 0, 0, 0, 399, 400, 1, 0, 0, 0, 400, 401,
|
|
269
|
-
1, 0, 0, 0, 401, 405, 7, 6, 0, 0, 402, 403, 5, 50, 0, 0, 403, 405, 7, 13, 0, 0, 404, 399, 1, 0, 0,
|
|
270
|
-
0, 404, 402, 1, 0, 0, 0, 405, 409, 1, 0, 0, 0, 406, 407, 5, 58, 0, 0, 407, 408, 7, 14, 0, 0, 408,
|
|
271
|
-
410, 7, 6, 0, 0, 409, 406, 1, 0, 0, 0, 409, 410, 1, 0, 0, 0, 410, 412, 1, 0, 0, 0, 411, 396, 1, 0,
|
|
272
|
-
0, 0, 411, 397, 1, 0, 0, 0, 412, 94, 1, 0, 0, 0, 413, 416, 5, 92, 0, 0, 414, 417, 3, 97, 48, 0, 415,
|
|
273
|
-
417, 9, 0, 0, 0, 416, 414, 1, 0, 0, 0, 416, 415, 1, 0, 0, 0, 417, 96, 1, 0, 0, 0, 418, 419, 5, 117,
|
|
274
|
-
0, 0, 419, 420, 3, 99, 49, 0, 420, 421, 3, 99, 49, 0, 421, 422, 3, 99, 49, 0, 422, 423, 3, 99,
|
|
275
|
-
49, 0, 423, 98, 1, 0, 0, 0, 424, 425, 7, 15, 0, 0, 425, 100, 1, 0, 0, 0, 35, 0, 226, 239, 255, 265,
|
|
276
|
-
268, 273, 279, 282, 286, 291, 293, 301, 303, 306, 311, 319, 321, 326, 328, 335, 337, 341,
|
|
277
|
-
346, 361, 370, 376, 390, 392, 394, 399, 404, 409, 411, 416, 1, 0, 1, 0];
|
|
278
344
|
OpraFilterLexer.DecisionsToDFA = OpraFilterLexer._ATN.decisionToState.map((ds, index) => new antlr4_1.DFA(ds, index));
|
|
279
345
|
exports.default = OpraFilterLexer;
|