@alma-cdk/project 0.0.14
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/.gitattributes +22 -0
- package/.jsii +5569 -0
- package/.nvmrc +1 -0
- package/API.md +3500 -0
- package/LICENSE +202 -0
- package/README.md +201 -0
- package/assets/accounts-1x.svg +3 -0
- package/assets/accounts-2x.svg +3 -0
- package/assets/accounts-3x.svg +3 -0
- package/assets/accounts.drawio +1 -0
- package/assets/alma-cdk-logo.afdesign +0 -0
- package/assets/alma-cdk-project.svg +61 -0
- package/lib/configurations/accounts.d.ts +108 -0
- package/lib/configurations/accounts.js +176 -0
- package/lib/configurations/environments.d.ts +45 -0
- package/lib/configurations/environments.js +83 -0
- package/lib/configurations/index.d.ts +2 -0
- package/lib/configurations/index.js +8 -0
- package/lib/context/account.d.ts +12 -0
- package/lib/context/account.js +41 -0
- package/lib/context/environment.d.ts +144 -0
- package/lib/context/environment.js +183 -0
- package/lib/context/index.d.ts +2 -0
- package/lib/context/index.js +9 -0
- package/lib/error/add.d.ts +2 -0
- package/lib/error/add.js +9 -0
- package/lib/error/index.d.ts +1 -0
- package/lib/error/index.js +5 -0
- package/lib/index.d.ts +6 -0
- package/lib/index.js +19 -0
- package/lib/name/index.d.ts +10 -0
- package/lib/name/index.js +18 -0
- package/lib/name/interfaces.d.ts +4 -0
- package/lib/name/interfaces.js +3 -0
- package/lib/name/max-length.d.ts +6 -0
- package/lib/name/max-length.js +29 -0
- package/lib/name/name-path.d.ts +8 -0
- package/lib/name/name-path.js +32 -0
- package/lib/name/name-path.test.d.ts +1 -0
- package/lib/name/name-path.test.js +88 -0
- package/lib/name/name-url.d.ts +8 -0
- package/lib/name/name-url.js +33 -0
- package/lib/name/name-url.test.d.ts +1 -0
- package/lib/name/name-url.test.js +84 -0
- package/lib/name/name.d.ts +13 -0
- package/lib/name/name.js +61 -0
- package/lib/name/name.test.d.ts +1 -0
- package/lib/name/name.test.js +83 -0
- package/lib/name/trim.d.ts +3 -0
- package/lib/name/trim.js +24 -0
- package/lib/name/trim.test.d.ts +1 -0
- package/lib/name/trim.test.js +30 -0
- package/lib/project/account-type.d.ts +10 -0
- package/lib/project/account-type.js +37 -0
- package/lib/project/environment-type.d.ts +9 -0
- package/lib/project/environment-type.js +40 -0
- package/lib/project/envregexp.d.ts +5 -0
- package/lib/project/envregexp.js +17 -0
- package/lib/project/index.d.ts +6 -0
- package/lib/project/index.js +25 -0
- package/lib/project/interfaces.d.ts +102 -0
- package/lib/project/interfaces.js +3 -0
- package/lib/project/project-context.d.ts +29 -0
- package/lib/project/project-context.js +87 -0
- package/lib/project/project.d.ts +51 -0
- package/lib/project/project.js +82 -0
- package/lib/project/resolve-region.d.ts +2 -0
- package/lib/project/resolve-region.js +24 -0
- package/lib/smartstack/description/index.d.ts +6 -0
- package/lib/smartstack/description/index.js +16 -0
- package/lib/smartstack/description/index.test.d.ts +1 -0
- package/lib/smartstack/description/index.test.js +104 -0
- package/lib/smartstack/index.d.ts +1 -0
- package/lib/smartstack/index.js +5 -0
- package/lib/smartstack/name/index.d.ts +8 -0
- package/lib/smartstack/name/index.js +21 -0
- package/lib/smartstack/name/index.test.d.ts +1 -0
- package/lib/smartstack/name/index.test.js +129 -0
- package/lib/smartstack/stack.d.ts +9 -0
- package/lib/smartstack/stack.js +66 -0
- package/lib/smartstack/tags/checks.d.ts +5 -0
- package/lib/smartstack/tags/checks.js +18 -0
- package/lib/smartstack/tags/exclude.d.ts +2 -0
- package/lib/smartstack/tags/exclude.js +17 -0
- package/lib/smartstack/tags/index.d.ts +2 -0
- package/lib/smartstack/tags/index.js +23 -0
- package/lib/smartstack/tags/taggers.d.ts +13 -0
- package/lib/smartstack/tags/taggers.js +41 -0
- package/lib/smartstack/tags/values.d.ts +20 -0
- package/lib/smartstack/tags/values.js +27 -0
- package/lib/smartstack/termination/index.d.ts +5 -0
- package/lib/smartstack/termination/index.js +22 -0
- package/lib/smartstack/termination/index.test.d.ts +1 -0
- package/lib/smartstack/termination/index.test.js +86 -0
- package/lib/template/index.d.ts +5 -0
- package/lib/template/index.js +28 -0
- package/lib/utils/isSet.d.ts +1 -0
- package/lib/utils/isSet.js +9 -0
- package/lib/wrapper/account.d.ts +4 -0
- package/lib/wrapper/account.js +23 -0
- package/lib/wrapper/environment.d.ts +4 -0
- package/lib/wrapper/environment.js +19 -0
- package/lib/wrapper/index.d.ts +2 -0
- package/lib/wrapper/index.js +7 -0
- package/node_modules/a-sync-waterfall/LICENSE +21 -0
- package/node_modules/a-sync-waterfall/README.md +95 -0
- package/node_modules/a-sync-waterfall/index.js +83 -0
- package/node_modules/a-sync-waterfall/package.json +25 -0
- package/node_modules/a-sync-waterfall/test.js +77 -0
- package/node_modules/asap/CHANGES.md +70 -0
- package/node_modules/asap/LICENSE.md +21 -0
- package/node_modules/asap/README.md +237 -0
- package/node_modules/asap/asap.js +65 -0
- package/node_modules/asap/browser-asap.js +66 -0
- package/node_modules/asap/browser-raw.js +223 -0
- package/node_modules/asap/package.json +62 -0
- package/node_modules/asap/raw.js +101 -0
- package/node_modules/camel-case/LICENSE +21 -0
- package/node_modules/camel-case/README.md +47 -0
- package/node_modules/camel-case/dist/index.d.ts +5 -0
- package/node_modules/camel-case/dist/index.js +23 -0
- package/node_modules/camel-case/dist/index.js.map +1 -0
- package/node_modules/camel-case/dist/index.spec.d.ts +1 -0
- package/node_modules/camel-case/dist/index.spec.js +26 -0
- package/node_modules/camel-case/dist/index.spec.js.map +1 -0
- package/node_modules/camel-case/dist.es2015/index.d.ts +5 -0
- package/node_modules/camel-case/dist.es2015/index.js +17 -0
- package/node_modules/camel-case/dist.es2015/index.js.map +1 -0
- package/node_modules/camel-case/dist.es2015/index.spec.d.ts +1 -0
- package/node_modules/camel-case/dist.es2015/index.spec.js +24 -0
- package/node_modules/camel-case/dist.es2015/index.spec.js.map +1 -0
- package/node_modules/camel-case/node_modules/tslib/CopyrightNotice.txt +15 -0
- package/node_modules/camel-case/node_modules/tslib/LICENSE.txt +12 -0
- package/node_modules/camel-case/node_modules/tslib/README.md +164 -0
- package/node_modules/camel-case/node_modules/tslib/modules/index.js +55 -0
- package/node_modules/camel-case/node_modules/tslib/modules/package.json +3 -0
- package/node_modules/camel-case/node_modules/tslib/package.json +42 -0
- package/node_modules/camel-case/node_modules/tslib/tslib.d.ts +398 -0
- package/node_modules/camel-case/node_modules/tslib/tslib.es6.html +1 -0
- package/node_modules/camel-case/node_modules/tslib/tslib.es6.js +248 -0
- package/node_modules/camel-case/node_modules/tslib/tslib.html +1 -0
- package/node_modules/camel-case/node_modules/tslib/tslib.js +317 -0
- package/node_modules/camel-case/package.json +93 -0
- package/node_modules/capital-case/LICENSE +21 -0
- package/node_modules/capital-case/README.md +37 -0
- package/node_modules/capital-case/dist/index.d.ts +4 -0
- package/node_modules/capital-case/dist/index.js +16 -0
- package/node_modules/capital-case/dist/index.js.map +1 -0
- package/node_modules/capital-case/dist/index.spec.d.ts +1 -0
- package/node_modules/capital-case/dist/index.spec.js +24 -0
- package/node_modules/capital-case/dist/index.spec.js.map +1 -0
- package/node_modules/capital-case/dist.es2015/index.d.ts +4 -0
- package/node_modules/capital-case/dist.es2015/index.js +11 -0
- package/node_modules/capital-case/dist.es2015/index.js.map +1 -0
- package/node_modules/capital-case/dist.es2015/index.spec.d.ts +1 -0
- package/node_modules/capital-case/dist.es2015/index.spec.js +22 -0
- package/node_modules/capital-case/dist.es2015/index.spec.js.map +1 -0
- package/node_modules/capital-case/node_modules/tslib/CopyrightNotice.txt +15 -0
- package/node_modules/capital-case/node_modules/tslib/LICENSE.txt +12 -0
- package/node_modules/capital-case/node_modules/tslib/README.md +164 -0
- package/node_modules/capital-case/node_modules/tslib/modules/index.js +55 -0
- package/node_modules/capital-case/node_modules/tslib/modules/package.json +3 -0
- package/node_modules/capital-case/node_modules/tslib/package.json +42 -0
- package/node_modules/capital-case/node_modules/tslib/tslib.d.ts +398 -0
- package/node_modules/capital-case/node_modules/tslib/tslib.es6.html +1 -0
- package/node_modules/capital-case/node_modules/tslib/tslib.es6.js +248 -0
- package/node_modules/capital-case/node_modules/tslib/tslib.html +1 -0
- package/node_modules/capital-case/node_modules/tslib/tslib.js +317 -0
- package/node_modules/capital-case/package.json +94 -0
- package/node_modules/change-case/LICENSE +21 -0
- package/node_modules/change-case/README.md +44 -0
- package/node_modules/change-case/dist/index.d.ts +11 -0
- package/node_modules/change-case/dist/index.js +15 -0
- package/node_modules/change-case/dist/index.js.map +1 -0
- package/node_modules/change-case/dist/index.spec.d.ts +1 -0
- package/node_modules/change-case/dist/index.spec.js +9 -0
- package/node_modules/change-case/dist/index.spec.js.map +1 -0
- package/node_modules/change-case/dist.es2015/index.d.ts +11 -0
- package/node_modules/change-case/dist.es2015/index.js +12 -0
- package/node_modules/change-case/dist.es2015/index.js.map +1 -0
- package/node_modules/change-case/dist.es2015/index.spec.d.ts +1 -0
- package/node_modules/change-case/dist.es2015/index.spec.js +7 -0
- package/node_modules/change-case/dist.es2015/index.spec.js.map +1 -0
- package/node_modules/change-case/node_modules/tslib/CopyrightNotice.txt +15 -0
- package/node_modules/change-case/node_modules/tslib/LICENSE.txt +12 -0
- package/node_modules/change-case/node_modules/tslib/README.md +164 -0
- package/node_modules/change-case/node_modules/tslib/modules/index.js +55 -0
- package/node_modules/change-case/node_modules/tslib/modules/package.json +3 -0
- package/node_modules/change-case/node_modules/tslib/package.json +42 -0
- package/node_modules/change-case/node_modules/tslib/tslib.d.ts +398 -0
- package/node_modules/change-case/node_modules/tslib/tslib.es6.html +1 -0
- package/node_modules/change-case/node_modules/tslib/tslib.es6.js +248 -0
- package/node_modules/change-case/node_modules/tslib/tslib.html +1 -0
- package/node_modules/change-case/node_modules/tslib/tslib.js +317 -0
- package/node_modules/change-case/package.json +105 -0
- package/node_modules/constant-case/LICENSE +21 -0
- package/node_modules/constant-case/README.md +37 -0
- package/node_modules/constant-case/dist/index.d.ts +3 -0
- package/node_modules/constant-case/dist/index.js +12 -0
- package/node_modules/constant-case/dist/index.js.map +1 -0
- package/node_modules/constant-case/dist/index.spec.d.ts +1 -0
- package/node_modules/constant-case/dist/index.spec.js +26 -0
- package/node_modules/constant-case/dist/index.spec.js.map +1 -0
- package/node_modules/constant-case/dist.es2015/index.d.ts +3 -0
- package/node_modules/constant-case/dist.es2015/index.js +8 -0
- package/node_modules/constant-case/dist.es2015/index.js.map +1 -0
- package/node_modules/constant-case/dist.es2015/index.spec.d.ts +1 -0
- package/node_modules/constant-case/dist.es2015/index.spec.js +24 -0
- package/node_modules/constant-case/dist.es2015/index.spec.js.map +1 -0
- package/node_modules/constant-case/node_modules/tslib/CopyrightNotice.txt +15 -0
- package/node_modules/constant-case/node_modules/tslib/LICENSE.txt +12 -0
- package/node_modules/constant-case/node_modules/tslib/README.md +164 -0
- package/node_modules/constant-case/node_modules/tslib/modules/index.js +55 -0
- package/node_modules/constant-case/node_modules/tslib/modules/package.json +3 -0
- package/node_modules/constant-case/node_modules/tslib/package.json +42 -0
- package/node_modules/constant-case/node_modules/tslib/tslib.d.ts +398 -0
- package/node_modules/constant-case/node_modules/tslib/tslib.es6.html +1 -0
- package/node_modules/constant-case/node_modules/tslib/tslib.es6.js +248 -0
- package/node_modules/constant-case/node_modules/tslib/tslib.html +1 -0
- package/node_modules/constant-case/node_modules/tslib/tslib.js +317 -0
- package/node_modules/constant-case/package.json +94 -0
- package/node_modules/dot-case/LICENSE +21 -0
- package/node_modules/dot-case/README.md +37 -0
- package/node_modules/dot-case/dist/index.d.ts +3 -0
- package/node_modules/dot-case/dist/index.js +11 -0
- package/node_modules/dot-case/dist/index.js.map +1 -0
- package/node_modules/dot-case/dist/index.spec.d.ts +1 -0
- package/node_modules/dot-case/dist/index.spec.js +26 -0
- package/node_modules/dot-case/dist/index.spec.js.map +1 -0
- package/node_modules/dot-case/dist.es2015/index.d.ts +3 -0
- package/node_modules/dot-case/dist.es2015/index.js +7 -0
- package/node_modules/dot-case/dist.es2015/index.js.map +1 -0
- package/node_modules/dot-case/dist.es2015/index.spec.d.ts +1 -0
- package/node_modules/dot-case/dist.es2015/index.spec.js +24 -0
- package/node_modules/dot-case/dist.es2015/index.spec.js.map +1 -0
- package/node_modules/dot-case/node_modules/tslib/CopyrightNotice.txt +15 -0
- package/node_modules/dot-case/node_modules/tslib/LICENSE.txt +12 -0
- package/node_modules/dot-case/node_modules/tslib/README.md +164 -0
- package/node_modules/dot-case/node_modules/tslib/modules/index.js +55 -0
- package/node_modules/dot-case/node_modules/tslib/modules/package.json +3 -0
- package/node_modules/dot-case/node_modules/tslib/package.json +42 -0
- package/node_modules/dot-case/node_modules/tslib/tslib.d.ts +398 -0
- package/node_modules/dot-case/node_modules/tslib/tslib.es6.html +1 -0
- package/node_modules/dot-case/node_modules/tslib/tslib.es6.js +248 -0
- package/node_modules/dot-case/node_modules/tslib/tslib.html +1 -0
- package/node_modules/dot-case/node_modules/tslib/tslib.js +317 -0
- package/node_modules/dot-case/package.json +93 -0
- package/node_modules/header-case/LICENSE +21 -0
- package/node_modules/header-case/README.md +37 -0
- package/node_modules/header-case/dist/index.d.ts +3 -0
- package/node_modules/header-case/dist/index.js +11 -0
- package/node_modules/header-case/dist/index.js.map +1 -0
- package/node_modules/header-case/dist/index.spec.d.ts +1 -0
- package/node_modules/header-case/dist/index.spec.js +24 -0
- package/node_modules/header-case/dist/index.spec.js.map +1 -0
- package/node_modules/header-case/dist.es2015/index.d.ts +3 -0
- package/node_modules/header-case/dist.es2015/index.js +7 -0
- package/node_modules/header-case/dist.es2015/index.js.map +1 -0
- package/node_modules/header-case/dist.es2015/index.spec.d.ts +1 -0
- package/node_modules/header-case/dist.es2015/index.spec.js +22 -0
- package/node_modules/header-case/dist.es2015/index.spec.js.map +1 -0
- package/node_modules/header-case/node_modules/tslib/CopyrightNotice.txt +15 -0
- package/node_modules/header-case/node_modules/tslib/LICENSE.txt +12 -0
- package/node_modules/header-case/node_modules/tslib/README.md +164 -0
- package/node_modules/header-case/node_modules/tslib/modules/index.js +55 -0
- package/node_modules/header-case/node_modules/tslib/modules/package.json +3 -0
- package/node_modules/header-case/node_modules/tslib/package.json +42 -0
- package/node_modules/header-case/node_modules/tslib/tslib.d.ts +398 -0
- package/node_modules/header-case/node_modules/tslib/tslib.es6.html +1 -0
- package/node_modules/header-case/node_modules/tslib/tslib.es6.js +248 -0
- package/node_modules/header-case/node_modules/tslib/tslib.html +1 -0
- package/node_modules/header-case/node_modules/tslib/tslib.js +317 -0
- package/node_modules/header-case/package.json +93 -0
- package/node_modules/lodash/LICENSE +47 -0
- package/node_modules/lodash/README.md +39 -0
- package/node_modules/lodash/_DataView.js +7 -0
- package/node_modules/lodash/_Hash.js +32 -0
- package/node_modules/lodash/_LazyWrapper.js +28 -0
- package/node_modules/lodash/_ListCache.js +32 -0
- package/node_modules/lodash/_LodashWrapper.js +22 -0
- package/node_modules/lodash/_Map.js +7 -0
- package/node_modules/lodash/_MapCache.js +32 -0
- package/node_modules/lodash/_Promise.js +7 -0
- package/node_modules/lodash/_Set.js +7 -0
- package/node_modules/lodash/_SetCache.js +27 -0
- package/node_modules/lodash/_Stack.js +27 -0
- package/node_modules/lodash/_Symbol.js +6 -0
- package/node_modules/lodash/_Uint8Array.js +6 -0
- package/node_modules/lodash/_WeakMap.js +7 -0
- package/node_modules/lodash/_apply.js +21 -0
- package/node_modules/lodash/_arrayAggregator.js +22 -0
- package/node_modules/lodash/_arrayEach.js +22 -0
- package/node_modules/lodash/_arrayEachRight.js +21 -0
- package/node_modules/lodash/_arrayEvery.js +23 -0
- package/node_modules/lodash/_arrayFilter.js +25 -0
- package/node_modules/lodash/_arrayIncludes.js +17 -0
- package/node_modules/lodash/_arrayIncludesWith.js +22 -0
- package/node_modules/lodash/_arrayLikeKeys.js +49 -0
- package/node_modules/lodash/_arrayMap.js +21 -0
- package/node_modules/lodash/_arrayPush.js +20 -0
- package/node_modules/lodash/_arrayReduce.js +26 -0
- package/node_modules/lodash/_arrayReduceRight.js +24 -0
- package/node_modules/lodash/_arraySample.js +15 -0
- package/node_modules/lodash/_arraySampleSize.js +17 -0
- package/node_modules/lodash/_arrayShuffle.js +15 -0
- package/node_modules/lodash/_arraySome.js +23 -0
- package/node_modules/lodash/_asciiSize.js +12 -0
- package/node_modules/lodash/_asciiToArray.js +12 -0
- package/node_modules/lodash/_asciiWords.js +15 -0
- package/node_modules/lodash/_assignMergeValue.js +20 -0
- package/node_modules/lodash/_assignValue.js +28 -0
- package/node_modules/lodash/_assocIndexOf.js +21 -0
- package/node_modules/lodash/_baseAggregator.js +21 -0
- package/node_modules/lodash/_baseAssign.js +17 -0
- package/node_modules/lodash/_baseAssignIn.js +17 -0
- package/node_modules/lodash/_baseAssignValue.js +25 -0
- package/node_modules/lodash/_baseAt.js +23 -0
- package/node_modules/lodash/_baseClamp.js +22 -0
- package/node_modules/lodash/_baseClone.js +166 -0
- package/node_modules/lodash/_baseConforms.js +18 -0
- package/node_modules/lodash/_baseConformsTo.js +27 -0
- package/node_modules/lodash/_baseCreate.js +30 -0
- package/node_modules/lodash/_baseDelay.js +21 -0
- package/node_modules/lodash/_baseDifference.js +67 -0
- package/node_modules/lodash/_baseEach.js +14 -0
- package/node_modules/lodash/_baseEachRight.js +14 -0
- package/node_modules/lodash/_baseEvery.js +21 -0
- package/node_modules/lodash/_baseExtremum.js +32 -0
- package/node_modules/lodash/_baseFill.js +32 -0
- package/node_modules/lodash/_baseFilter.js +21 -0
- package/node_modules/lodash/_baseFindIndex.js +24 -0
- package/node_modules/lodash/_baseFindKey.js +23 -0
- package/node_modules/lodash/_baseFlatten.js +38 -0
- package/node_modules/lodash/_baseFor.js +16 -0
- package/node_modules/lodash/_baseForOwn.js +16 -0
- package/node_modules/lodash/_baseForOwnRight.js +16 -0
- package/node_modules/lodash/_baseForRight.js +15 -0
- package/node_modules/lodash/_baseFunctions.js +19 -0
- package/node_modules/lodash/_baseGet.js +24 -0
- package/node_modules/lodash/_baseGetAllKeys.js +20 -0
- package/node_modules/lodash/_baseGetTag.js +28 -0
- package/node_modules/lodash/_baseGt.js +14 -0
- package/node_modules/lodash/_baseHas.js +19 -0
- package/node_modules/lodash/_baseHasIn.js +13 -0
- package/node_modules/lodash/_baseInRange.js +18 -0
- package/node_modules/lodash/_baseIndexOf.js +20 -0
- package/node_modules/lodash/_baseIndexOfWith.js +23 -0
- package/node_modules/lodash/_baseIntersection.js +74 -0
- package/node_modules/lodash/_baseInverter.js +21 -0
- package/node_modules/lodash/_baseInvoke.js +24 -0
- package/node_modules/lodash/_baseIsArguments.js +18 -0
- package/node_modules/lodash/_baseIsArrayBuffer.js +17 -0
- package/node_modules/lodash/_baseIsDate.js +18 -0
- package/node_modules/lodash/_baseIsEqual.js +28 -0
- package/node_modules/lodash/_baseIsEqualDeep.js +83 -0
- package/node_modules/lodash/_baseIsMap.js +18 -0
- package/node_modules/lodash/_baseIsMatch.js +62 -0
- package/node_modules/lodash/_baseIsNaN.js +12 -0
- package/node_modules/lodash/_baseIsNative.js +47 -0
- package/node_modules/lodash/_baseIsRegExp.js +18 -0
- package/node_modules/lodash/_baseIsSet.js +18 -0
- package/node_modules/lodash/_baseIsTypedArray.js +60 -0
- package/node_modules/lodash/_baseIteratee.js +31 -0
- package/node_modules/lodash/_baseKeys.js +30 -0
- package/node_modules/lodash/_baseKeysIn.js +33 -0
- package/node_modules/lodash/_baseLodash.js +10 -0
- package/node_modules/lodash/_baseLt.js +14 -0
- package/node_modules/lodash/_baseMap.js +22 -0
- package/node_modules/lodash/_baseMatches.js +22 -0
- package/node_modules/lodash/_baseMatchesProperty.js +33 -0
- package/node_modules/lodash/_baseMean.js +20 -0
- package/node_modules/lodash/_baseMerge.js +42 -0
- package/node_modules/lodash/_baseMergeDeep.js +94 -0
- package/node_modules/lodash/_baseNth.js +20 -0
- package/node_modules/lodash/_baseOrderBy.js +49 -0
- package/node_modules/lodash/_basePick.js +19 -0
- package/node_modules/lodash/_basePickBy.js +30 -0
- package/node_modules/lodash/_baseProperty.js +14 -0
- package/node_modules/lodash/_basePropertyDeep.js +16 -0
- package/node_modules/lodash/_basePropertyOf.js +14 -0
- package/node_modules/lodash/_basePullAll.js +51 -0
- package/node_modules/lodash/_basePullAt.js +37 -0
- package/node_modules/lodash/_baseRandom.js +18 -0
- package/node_modules/lodash/_baseRange.js +28 -0
- package/node_modules/lodash/_baseReduce.js +23 -0
- package/node_modules/lodash/_baseRepeat.js +35 -0
- package/node_modules/lodash/_baseRest.js +17 -0
- package/node_modules/lodash/_baseSample.js +15 -0
- package/node_modules/lodash/_baseSampleSize.js +18 -0
- package/node_modules/lodash/_baseSet.js +51 -0
- package/node_modules/lodash/_baseSetData.js +17 -0
- package/node_modules/lodash/_baseSetToString.js +22 -0
- package/node_modules/lodash/_baseShuffle.js +15 -0
- package/node_modules/lodash/_baseSlice.js +31 -0
- package/node_modules/lodash/_baseSome.js +22 -0
- package/node_modules/lodash/_baseSortBy.js +21 -0
- package/node_modules/lodash/_baseSortedIndex.js +42 -0
- package/node_modules/lodash/_baseSortedIndexBy.js +67 -0
- package/node_modules/lodash/_baseSortedUniq.js +30 -0
- package/node_modules/lodash/_baseSum.js +24 -0
- package/node_modules/lodash/_baseTimes.js +20 -0
- package/node_modules/lodash/_baseToNumber.js +24 -0
- package/node_modules/lodash/_baseToPairs.js +18 -0
- package/node_modules/lodash/_baseToString.js +37 -0
- package/node_modules/lodash/_baseTrim.js +19 -0
- package/node_modules/lodash/_baseUnary.js +14 -0
- package/node_modules/lodash/_baseUniq.js +72 -0
- package/node_modules/lodash/_baseUnset.js +20 -0
- package/node_modules/lodash/_baseUpdate.js +18 -0
- package/node_modules/lodash/_baseValues.js +19 -0
- package/node_modules/lodash/_baseWhile.js +26 -0
- package/node_modules/lodash/_baseWrapperValue.js +25 -0
- package/node_modules/lodash/_baseXor.js +36 -0
- package/node_modules/lodash/_baseZipObject.js +23 -0
- package/node_modules/lodash/_cacheHas.js +13 -0
- package/node_modules/lodash/_castArrayLikeObject.js +14 -0
- package/node_modules/lodash/_castFunction.js +14 -0
- package/node_modules/lodash/_castPath.js +21 -0
- package/node_modules/lodash/_castRest.js +14 -0
- package/node_modules/lodash/_castSlice.js +18 -0
- package/node_modules/lodash/_charsEndIndex.js +19 -0
- package/node_modules/lodash/_charsStartIndex.js +20 -0
- package/node_modules/lodash/_cloneArrayBuffer.js +16 -0
- package/node_modules/lodash/_cloneBuffer.js +35 -0
- package/node_modules/lodash/_cloneDataView.js +16 -0
- package/node_modules/lodash/_cloneRegExp.js +17 -0
- package/node_modules/lodash/_cloneSymbol.js +18 -0
- package/node_modules/lodash/_cloneTypedArray.js +16 -0
- package/node_modules/lodash/_compareAscending.js +41 -0
- package/node_modules/lodash/_compareMultiple.js +44 -0
- package/node_modules/lodash/_composeArgs.js +39 -0
- package/node_modules/lodash/_composeArgsRight.js +41 -0
- package/node_modules/lodash/_copyArray.js +20 -0
- package/node_modules/lodash/_copyObject.js +40 -0
- package/node_modules/lodash/_copySymbols.js +16 -0
- package/node_modules/lodash/_copySymbolsIn.js +16 -0
- package/node_modules/lodash/_coreJsData.js +6 -0
- package/node_modules/lodash/_countHolders.js +21 -0
- package/node_modules/lodash/_createAggregator.js +23 -0
- package/node_modules/lodash/_createAssigner.js +37 -0
- package/node_modules/lodash/_createBaseEach.js +32 -0
- package/node_modules/lodash/_createBaseFor.js +25 -0
- package/node_modules/lodash/_createBind.js +28 -0
- package/node_modules/lodash/_createCaseFirst.js +33 -0
- package/node_modules/lodash/_createCompounder.js +24 -0
- package/node_modules/lodash/_createCtor.js +37 -0
- package/node_modules/lodash/_createCurry.js +46 -0
- package/node_modules/lodash/_createFind.js +25 -0
- package/node_modules/lodash/_createFlow.js +78 -0
- package/node_modules/lodash/_createHybrid.js +92 -0
- package/node_modules/lodash/_createInverter.js +17 -0
- package/node_modules/lodash/_createMathOperation.js +38 -0
- package/node_modules/lodash/_createOver.js +27 -0
- package/node_modules/lodash/_createPadding.js +33 -0
- package/node_modules/lodash/_createPartial.js +43 -0
- package/node_modules/lodash/_createRange.js +30 -0
- package/node_modules/lodash/_createRecurry.js +56 -0
- package/node_modules/lodash/_createRelationalOperation.js +20 -0
- package/node_modules/lodash/_createRound.js +35 -0
- package/node_modules/lodash/_createSet.js +19 -0
- package/node_modules/lodash/_createToPairs.js +30 -0
- package/node_modules/lodash/_createWrap.js +106 -0
- package/node_modules/lodash/_customDefaultsAssignIn.js +29 -0
- package/node_modules/lodash/_customDefaultsMerge.js +28 -0
- package/node_modules/lodash/_customOmitClone.js +16 -0
- package/node_modules/lodash/_deburrLetter.js +71 -0
- package/node_modules/lodash/_defineProperty.js +11 -0
- package/node_modules/lodash/_equalArrays.js +84 -0
- package/node_modules/lodash/_equalByTag.js +112 -0
- package/node_modules/lodash/_equalObjects.js +90 -0
- package/node_modules/lodash/_escapeHtmlChar.js +21 -0
- package/node_modules/lodash/_escapeStringChar.js +22 -0
- package/node_modules/lodash/_flatRest.js +16 -0
- package/node_modules/lodash/_freeGlobal.js +4 -0
- package/node_modules/lodash/_getAllKeys.js +16 -0
- package/node_modules/lodash/_getAllKeysIn.js +17 -0
- package/node_modules/lodash/_getData.js +15 -0
- package/node_modules/lodash/_getFuncName.js +31 -0
- package/node_modules/lodash/_getHolder.js +13 -0
- package/node_modules/lodash/_getMapData.js +18 -0
- package/node_modules/lodash/_getMatchData.js +24 -0
- package/node_modules/lodash/_getNative.js +17 -0
- package/node_modules/lodash/_getPrototype.js +6 -0
- package/node_modules/lodash/_getRawTag.js +46 -0
- package/node_modules/lodash/_getSymbols.js +30 -0
- package/node_modules/lodash/_getSymbolsIn.js +25 -0
- package/node_modules/lodash/_getTag.js +58 -0
- package/node_modules/lodash/_getValue.js +13 -0
- package/node_modules/lodash/_getView.js +33 -0
- package/node_modules/lodash/_getWrapDetails.js +17 -0
- package/node_modules/lodash/_hasPath.js +39 -0
- package/node_modules/lodash/_hasUnicode.js +26 -0
- package/node_modules/lodash/_hasUnicodeWord.js +15 -0
- package/node_modules/lodash/_hashClear.js +15 -0
- package/node_modules/lodash/_hashDelete.js +17 -0
- package/node_modules/lodash/_hashGet.js +30 -0
- package/node_modules/lodash/_hashHas.js +23 -0
- package/node_modules/lodash/_hashSet.js +23 -0
- package/node_modules/lodash/_initCloneArray.js +26 -0
- package/node_modules/lodash/_initCloneByTag.js +77 -0
- package/node_modules/lodash/_initCloneObject.js +18 -0
- package/node_modules/lodash/_insertWrapDetails.js +23 -0
- package/node_modules/lodash/_isFlattenable.js +20 -0
- package/node_modules/lodash/_isIndex.js +25 -0
- package/node_modules/lodash/_isIterateeCall.js +30 -0
- package/node_modules/lodash/_isKey.js +29 -0
- package/node_modules/lodash/_isKeyable.js +15 -0
- package/node_modules/lodash/_isLaziable.js +28 -0
- package/node_modules/lodash/_isMaskable.js +14 -0
- package/node_modules/lodash/_isMasked.js +20 -0
- package/node_modules/lodash/_isPrototype.js +18 -0
- package/node_modules/lodash/_isStrictComparable.js +15 -0
- package/node_modules/lodash/_iteratorToArray.js +18 -0
- package/node_modules/lodash/_lazyClone.js +23 -0
- package/node_modules/lodash/_lazyReverse.js +23 -0
- package/node_modules/lodash/_lazyValue.js +69 -0
- package/node_modules/lodash/_listCacheClear.js +13 -0
- package/node_modules/lodash/_listCacheDelete.js +35 -0
- package/node_modules/lodash/_listCacheGet.js +19 -0
- package/node_modules/lodash/_listCacheHas.js +16 -0
- package/node_modules/lodash/_listCacheSet.js +26 -0
- package/node_modules/lodash/_mapCacheClear.js +21 -0
- package/node_modules/lodash/_mapCacheDelete.js +18 -0
- package/node_modules/lodash/_mapCacheGet.js +16 -0
- package/node_modules/lodash/_mapCacheHas.js +16 -0
- package/node_modules/lodash/_mapCacheSet.js +22 -0
- package/node_modules/lodash/_mapToArray.js +18 -0
- package/node_modules/lodash/_matchesStrictComparable.js +20 -0
- package/node_modules/lodash/_memoizeCapped.js +26 -0
- package/node_modules/lodash/_mergeData.js +90 -0
- package/node_modules/lodash/_metaMap.js +6 -0
- package/node_modules/lodash/_nativeCreate.js +6 -0
- package/node_modules/lodash/_nativeKeys.js +6 -0
- package/node_modules/lodash/_nativeKeysIn.js +20 -0
- package/node_modules/lodash/_nodeUtil.js +30 -0
- package/node_modules/lodash/_objectToString.js +22 -0
- package/node_modules/lodash/_overArg.js +15 -0
- package/node_modules/lodash/_overRest.js +36 -0
- package/node_modules/lodash/_parent.js +16 -0
- package/node_modules/lodash/_reEscape.js +4 -0
- package/node_modules/lodash/_reEvaluate.js +4 -0
- package/node_modules/lodash/_reInterpolate.js +4 -0
- package/node_modules/lodash/_realNames.js +4 -0
- package/node_modules/lodash/_reorder.js +29 -0
- package/node_modules/lodash/_replaceHolders.js +29 -0
- package/node_modules/lodash/_root.js +9 -0
- package/node_modules/lodash/_safeGet.js +21 -0
- package/node_modules/lodash/_setCacheAdd.js +19 -0
- package/node_modules/lodash/_setCacheHas.js +14 -0
- package/node_modules/lodash/_setData.js +20 -0
- package/node_modules/lodash/_setToArray.js +18 -0
- package/node_modules/lodash/_setToPairs.js +18 -0
- package/node_modules/lodash/_setToString.js +14 -0
- package/node_modules/lodash/_setWrapToString.js +21 -0
- package/node_modules/lodash/_shortOut.js +37 -0
- package/node_modules/lodash/_shuffleSelf.js +28 -0
- package/node_modules/lodash/_stackClear.js +15 -0
- package/node_modules/lodash/_stackDelete.js +18 -0
- package/node_modules/lodash/_stackGet.js +14 -0
- package/node_modules/lodash/_stackHas.js +14 -0
- package/node_modules/lodash/_stackSet.js +34 -0
- package/node_modules/lodash/_strictIndexOf.js +23 -0
- package/node_modules/lodash/_strictLastIndexOf.js +21 -0
- package/node_modules/lodash/_stringSize.js +18 -0
- package/node_modules/lodash/_stringToArray.js +18 -0
- package/node_modules/lodash/_stringToPath.js +27 -0
- package/node_modules/lodash/_toKey.js +21 -0
- package/node_modules/lodash/_toSource.js +26 -0
- package/node_modules/lodash/_trimmedEndIndex.js +19 -0
- package/node_modules/lodash/_unescapeHtmlChar.js +21 -0
- package/node_modules/lodash/_unicodeSize.js +44 -0
- package/node_modules/lodash/_unicodeToArray.js +40 -0
- package/node_modules/lodash/_unicodeWords.js +69 -0
- package/node_modules/lodash/_updateWrapDetails.js +46 -0
- package/node_modules/lodash/_wrapperClone.js +23 -0
- package/node_modules/lodash/add.js +22 -0
- package/node_modules/lodash/after.js +42 -0
- package/node_modules/lodash/array.js +67 -0
- package/node_modules/lodash/ary.js +29 -0
- package/node_modules/lodash/assign.js +58 -0
- package/node_modules/lodash/assignIn.js +40 -0
- package/node_modules/lodash/assignInWith.js +38 -0
- package/node_modules/lodash/assignWith.js +37 -0
- package/node_modules/lodash/at.js +23 -0
- package/node_modules/lodash/attempt.js +35 -0
- package/node_modules/lodash/before.js +40 -0
- package/node_modules/lodash/bind.js +57 -0
- package/node_modules/lodash/bindAll.js +41 -0
- package/node_modules/lodash/bindKey.js +68 -0
- package/node_modules/lodash/camelCase.js +29 -0
- package/node_modules/lodash/capitalize.js +23 -0
- package/node_modules/lodash/castArray.js +44 -0
- package/node_modules/lodash/ceil.js +26 -0
- package/node_modules/lodash/chain.js +38 -0
- package/node_modules/lodash/chunk.js +50 -0
- package/node_modules/lodash/clamp.js +39 -0
- package/node_modules/lodash/clone.js +36 -0
- package/node_modules/lodash/cloneDeep.js +29 -0
- package/node_modules/lodash/cloneDeepWith.js +40 -0
- package/node_modules/lodash/cloneWith.js +42 -0
- package/node_modules/lodash/collection.js +30 -0
- package/node_modules/lodash/commit.js +33 -0
- package/node_modules/lodash/compact.js +31 -0
- package/node_modules/lodash/concat.js +43 -0
- package/node_modules/lodash/cond.js +60 -0
- package/node_modules/lodash/conforms.js +35 -0
- package/node_modules/lodash/conformsTo.js +32 -0
- package/node_modules/lodash/constant.js +26 -0
- package/node_modules/lodash/core.js +3877 -0
- package/node_modules/lodash/core.min.js +29 -0
- package/node_modules/lodash/countBy.js +40 -0
- package/node_modules/lodash/create.js +43 -0
- package/node_modules/lodash/curry.js +57 -0
- package/node_modules/lodash/curryRight.js +54 -0
- package/node_modules/lodash/date.js +3 -0
- package/node_modules/lodash/debounce.js +191 -0
- package/node_modules/lodash/deburr.js +45 -0
- package/node_modules/lodash/defaultTo.js +25 -0
- package/node_modules/lodash/defaults.js +64 -0
- package/node_modules/lodash/defaultsDeep.js +30 -0
- package/node_modules/lodash/defer.js +26 -0
- package/node_modules/lodash/delay.js +28 -0
- package/node_modules/lodash/difference.js +33 -0
- package/node_modules/lodash/differenceBy.js +44 -0
- package/node_modules/lodash/differenceWith.js +40 -0
- package/node_modules/lodash/divide.js +22 -0
- package/node_modules/lodash/drop.js +38 -0
- package/node_modules/lodash/dropRight.js +39 -0
- package/node_modules/lodash/dropRightWhile.js +45 -0
- package/node_modules/lodash/dropWhile.js +45 -0
- package/node_modules/lodash/each.js +1 -0
- package/node_modules/lodash/eachRight.js +1 -0
- package/node_modules/lodash/endsWith.js +43 -0
- package/node_modules/lodash/entries.js +1 -0
- package/node_modules/lodash/entriesIn.js +1 -0
- package/node_modules/lodash/eq.js +37 -0
- package/node_modules/lodash/escape.js +43 -0
- package/node_modules/lodash/escapeRegExp.js +32 -0
- package/node_modules/lodash/every.js +56 -0
- package/node_modules/lodash/extend.js +1 -0
- package/node_modules/lodash/extendWith.js +1 -0
- package/node_modules/lodash/fill.js +45 -0
- package/node_modules/lodash/filter.js +52 -0
- package/node_modules/lodash/find.js +42 -0
- package/node_modules/lodash/findIndex.js +55 -0
- package/node_modules/lodash/findKey.js +44 -0
- package/node_modules/lodash/findLast.js +25 -0
- package/node_modules/lodash/findLastIndex.js +59 -0
- package/node_modules/lodash/findLastKey.js +44 -0
- package/node_modules/lodash/first.js +1 -0
- package/node_modules/lodash/flake.lock +40 -0
- package/node_modules/lodash/flake.nix +20 -0
- package/node_modules/lodash/flatMap.js +29 -0
- package/node_modules/lodash/flatMapDeep.js +31 -0
- package/node_modules/lodash/flatMapDepth.js +31 -0
- package/node_modules/lodash/flatten.js +22 -0
- package/node_modules/lodash/flattenDeep.js +25 -0
- package/node_modules/lodash/flattenDepth.js +33 -0
- package/node_modules/lodash/flip.js +28 -0
- package/node_modules/lodash/floor.js +26 -0
- package/node_modules/lodash/flow.js +27 -0
- package/node_modules/lodash/flowRight.js +26 -0
- package/node_modules/lodash/forEach.js +41 -0
- package/node_modules/lodash/forEachRight.js +31 -0
- package/node_modules/lodash/forIn.js +39 -0
- package/node_modules/lodash/forInRight.js +37 -0
- package/node_modules/lodash/forOwn.js +36 -0
- package/node_modules/lodash/forOwnRight.js +34 -0
- package/node_modules/lodash/fp/F.js +1 -0
- package/node_modules/lodash/fp/T.js +1 -0
- package/node_modules/lodash/fp/__.js +1 -0
- package/node_modules/lodash/fp/_baseConvert.js +569 -0
- package/node_modules/lodash/fp/_convertBrowser.js +18 -0
- package/node_modules/lodash/fp/_falseOptions.js +7 -0
- package/node_modules/lodash/fp/_mapping.js +358 -0
- package/node_modules/lodash/fp/_util.js +16 -0
- package/node_modules/lodash/fp/add.js +5 -0
- package/node_modules/lodash/fp/after.js +5 -0
- package/node_modules/lodash/fp/all.js +1 -0
- package/node_modules/lodash/fp/allPass.js +1 -0
- package/node_modules/lodash/fp/always.js +1 -0
- package/node_modules/lodash/fp/any.js +1 -0
- package/node_modules/lodash/fp/anyPass.js +1 -0
- package/node_modules/lodash/fp/apply.js +1 -0
- package/node_modules/lodash/fp/array.js +2 -0
- package/node_modules/lodash/fp/ary.js +5 -0
- package/node_modules/lodash/fp/assign.js +5 -0
- package/node_modules/lodash/fp/assignAll.js +5 -0
- package/node_modules/lodash/fp/assignAllWith.js +5 -0
- package/node_modules/lodash/fp/assignIn.js +5 -0
- package/node_modules/lodash/fp/assignInAll.js +5 -0
- package/node_modules/lodash/fp/assignInAllWith.js +5 -0
- package/node_modules/lodash/fp/assignInWith.js +5 -0
- package/node_modules/lodash/fp/assignWith.js +5 -0
- package/node_modules/lodash/fp/assoc.js +1 -0
- package/node_modules/lodash/fp/assocPath.js +1 -0
- package/node_modules/lodash/fp/at.js +5 -0
- package/node_modules/lodash/fp/attempt.js +5 -0
- package/node_modules/lodash/fp/before.js +5 -0
- package/node_modules/lodash/fp/bind.js +5 -0
- package/node_modules/lodash/fp/bindAll.js +5 -0
- package/node_modules/lodash/fp/bindKey.js +5 -0
- package/node_modules/lodash/fp/camelCase.js +5 -0
- package/node_modules/lodash/fp/capitalize.js +5 -0
- package/node_modules/lodash/fp/castArray.js +5 -0
- package/node_modules/lodash/fp/ceil.js +5 -0
- package/node_modules/lodash/fp/chain.js +5 -0
- package/node_modules/lodash/fp/chunk.js +5 -0
- package/node_modules/lodash/fp/clamp.js +5 -0
- package/node_modules/lodash/fp/clone.js +5 -0
- package/node_modules/lodash/fp/cloneDeep.js +5 -0
- package/node_modules/lodash/fp/cloneDeepWith.js +5 -0
- package/node_modules/lodash/fp/cloneWith.js +5 -0
- package/node_modules/lodash/fp/collection.js +2 -0
- package/node_modules/lodash/fp/commit.js +5 -0
- package/node_modules/lodash/fp/compact.js +5 -0
- package/node_modules/lodash/fp/complement.js +1 -0
- package/node_modules/lodash/fp/compose.js +1 -0
- package/node_modules/lodash/fp/concat.js +5 -0
- package/node_modules/lodash/fp/cond.js +5 -0
- package/node_modules/lodash/fp/conforms.js +1 -0
- package/node_modules/lodash/fp/conformsTo.js +5 -0
- package/node_modules/lodash/fp/constant.js +5 -0
- package/node_modules/lodash/fp/contains.js +1 -0
- package/node_modules/lodash/fp/convert.js +18 -0
- package/node_modules/lodash/fp/countBy.js +5 -0
- package/node_modules/lodash/fp/create.js +5 -0
- package/node_modules/lodash/fp/curry.js +5 -0
- package/node_modules/lodash/fp/curryN.js +5 -0
- package/node_modules/lodash/fp/curryRight.js +5 -0
- package/node_modules/lodash/fp/curryRightN.js +5 -0
- package/node_modules/lodash/fp/date.js +2 -0
- package/node_modules/lodash/fp/debounce.js +5 -0
- package/node_modules/lodash/fp/deburr.js +5 -0
- package/node_modules/lodash/fp/defaultTo.js +5 -0
- package/node_modules/lodash/fp/defaults.js +5 -0
- package/node_modules/lodash/fp/defaultsAll.js +5 -0
- package/node_modules/lodash/fp/defaultsDeep.js +5 -0
- package/node_modules/lodash/fp/defaultsDeepAll.js +5 -0
- package/node_modules/lodash/fp/defer.js +5 -0
- package/node_modules/lodash/fp/delay.js +5 -0
- package/node_modules/lodash/fp/difference.js +5 -0
- package/node_modules/lodash/fp/differenceBy.js +5 -0
- package/node_modules/lodash/fp/differenceWith.js +5 -0
- package/node_modules/lodash/fp/dissoc.js +1 -0
- package/node_modules/lodash/fp/dissocPath.js +1 -0
- package/node_modules/lodash/fp/divide.js +5 -0
- package/node_modules/lodash/fp/drop.js +5 -0
- package/node_modules/lodash/fp/dropLast.js +1 -0
- package/node_modules/lodash/fp/dropLastWhile.js +1 -0
- package/node_modules/lodash/fp/dropRight.js +5 -0
- package/node_modules/lodash/fp/dropRightWhile.js +5 -0
- package/node_modules/lodash/fp/dropWhile.js +5 -0
- package/node_modules/lodash/fp/each.js +1 -0
- package/node_modules/lodash/fp/eachRight.js +1 -0
- package/node_modules/lodash/fp/endsWith.js +5 -0
- package/node_modules/lodash/fp/entries.js +1 -0
- package/node_modules/lodash/fp/entriesIn.js +1 -0
- package/node_modules/lodash/fp/eq.js +5 -0
- package/node_modules/lodash/fp/equals.js +1 -0
- package/node_modules/lodash/fp/escape.js +5 -0
- package/node_modules/lodash/fp/escapeRegExp.js +5 -0
- package/node_modules/lodash/fp/every.js +5 -0
- package/node_modules/lodash/fp/extend.js +1 -0
- package/node_modules/lodash/fp/extendAll.js +1 -0
- package/node_modules/lodash/fp/extendAllWith.js +1 -0
- package/node_modules/lodash/fp/extendWith.js +1 -0
- package/node_modules/lodash/fp/fill.js +5 -0
- package/node_modules/lodash/fp/filter.js +5 -0
- package/node_modules/lodash/fp/find.js +5 -0
- package/node_modules/lodash/fp/findFrom.js +5 -0
- package/node_modules/lodash/fp/findIndex.js +5 -0
- package/node_modules/lodash/fp/findIndexFrom.js +5 -0
- package/node_modules/lodash/fp/findKey.js +5 -0
- package/node_modules/lodash/fp/findLast.js +5 -0
- package/node_modules/lodash/fp/findLastFrom.js +5 -0
- package/node_modules/lodash/fp/findLastIndex.js +5 -0
- package/node_modules/lodash/fp/findLastIndexFrom.js +5 -0
- package/node_modules/lodash/fp/findLastKey.js +5 -0
- package/node_modules/lodash/fp/first.js +1 -0
- package/node_modules/lodash/fp/flatMap.js +5 -0
- package/node_modules/lodash/fp/flatMapDeep.js +5 -0
- package/node_modules/lodash/fp/flatMapDepth.js +5 -0
- package/node_modules/lodash/fp/flatten.js +5 -0
- package/node_modules/lodash/fp/flattenDeep.js +5 -0
- package/node_modules/lodash/fp/flattenDepth.js +5 -0
- package/node_modules/lodash/fp/flip.js +5 -0
- package/node_modules/lodash/fp/floor.js +5 -0
- package/node_modules/lodash/fp/flow.js +5 -0
- package/node_modules/lodash/fp/flowRight.js +5 -0
- package/node_modules/lodash/fp/forEach.js +5 -0
- package/node_modules/lodash/fp/forEachRight.js +5 -0
- package/node_modules/lodash/fp/forIn.js +5 -0
- package/node_modules/lodash/fp/forInRight.js +5 -0
- package/node_modules/lodash/fp/forOwn.js +5 -0
- package/node_modules/lodash/fp/forOwnRight.js +5 -0
- package/node_modules/lodash/fp/fromPairs.js +5 -0
- package/node_modules/lodash/fp/function.js +2 -0
- package/node_modules/lodash/fp/functions.js +5 -0
- package/node_modules/lodash/fp/functionsIn.js +5 -0
- package/node_modules/lodash/fp/get.js +5 -0
- package/node_modules/lodash/fp/getOr.js +5 -0
- package/node_modules/lodash/fp/groupBy.js +5 -0
- package/node_modules/lodash/fp/gt.js +5 -0
- package/node_modules/lodash/fp/gte.js +5 -0
- package/node_modules/lodash/fp/has.js +5 -0
- package/node_modules/lodash/fp/hasIn.js +5 -0
- package/node_modules/lodash/fp/head.js +5 -0
- package/node_modules/lodash/fp/identical.js +1 -0
- package/node_modules/lodash/fp/identity.js +5 -0
- package/node_modules/lodash/fp/inRange.js +5 -0
- package/node_modules/lodash/fp/includes.js +5 -0
- package/node_modules/lodash/fp/includesFrom.js +5 -0
- package/node_modules/lodash/fp/indexBy.js +1 -0
- package/node_modules/lodash/fp/indexOf.js +5 -0
- package/node_modules/lodash/fp/indexOfFrom.js +5 -0
- package/node_modules/lodash/fp/init.js +1 -0
- package/node_modules/lodash/fp/initial.js +5 -0
- package/node_modules/lodash/fp/intersection.js +5 -0
- package/node_modules/lodash/fp/intersectionBy.js +5 -0
- package/node_modules/lodash/fp/intersectionWith.js +5 -0
- package/node_modules/lodash/fp/invert.js +5 -0
- package/node_modules/lodash/fp/invertBy.js +5 -0
- package/node_modules/lodash/fp/invertObj.js +1 -0
- package/node_modules/lodash/fp/invoke.js +5 -0
- package/node_modules/lodash/fp/invokeArgs.js +5 -0
- package/node_modules/lodash/fp/invokeArgsMap.js +5 -0
- package/node_modules/lodash/fp/invokeMap.js +5 -0
- package/node_modules/lodash/fp/isArguments.js +5 -0
- package/node_modules/lodash/fp/isArray.js +5 -0
- package/node_modules/lodash/fp/isArrayBuffer.js +5 -0
- package/node_modules/lodash/fp/isArrayLike.js +5 -0
- package/node_modules/lodash/fp/isArrayLikeObject.js +5 -0
- package/node_modules/lodash/fp/isBoolean.js +5 -0
- package/node_modules/lodash/fp/isBuffer.js +5 -0
- package/node_modules/lodash/fp/isDate.js +5 -0
- package/node_modules/lodash/fp/isElement.js +5 -0
- package/node_modules/lodash/fp/isEmpty.js +5 -0
- package/node_modules/lodash/fp/isEqual.js +5 -0
- package/node_modules/lodash/fp/isEqualWith.js +5 -0
- package/node_modules/lodash/fp/isError.js +5 -0
- package/node_modules/lodash/fp/isFinite.js +5 -0
- package/node_modules/lodash/fp/isFunction.js +5 -0
- package/node_modules/lodash/fp/isInteger.js +5 -0
- package/node_modules/lodash/fp/isLength.js +5 -0
- package/node_modules/lodash/fp/isMap.js +5 -0
- package/node_modules/lodash/fp/isMatch.js +5 -0
- package/node_modules/lodash/fp/isMatchWith.js +5 -0
- package/node_modules/lodash/fp/isNaN.js +5 -0
- package/node_modules/lodash/fp/isNative.js +5 -0
- package/node_modules/lodash/fp/isNil.js +5 -0
- package/node_modules/lodash/fp/isNull.js +5 -0
- package/node_modules/lodash/fp/isNumber.js +5 -0
- package/node_modules/lodash/fp/isObject.js +5 -0
- package/node_modules/lodash/fp/isObjectLike.js +5 -0
- package/node_modules/lodash/fp/isPlainObject.js +5 -0
- package/node_modules/lodash/fp/isRegExp.js +5 -0
- package/node_modules/lodash/fp/isSafeInteger.js +5 -0
- package/node_modules/lodash/fp/isSet.js +5 -0
- package/node_modules/lodash/fp/isString.js +5 -0
- package/node_modules/lodash/fp/isSymbol.js +5 -0
- package/node_modules/lodash/fp/isTypedArray.js +5 -0
- package/node_modules/lodash/fp/isUndefined.js +5 -0
- package/node_modules/lodash/fp/isWeakMap.js +5 -0
- package/node_modules/lodash/fp/isWeakSet.js +5 -0
- package/node_modules/lodash/fp/iteratee.js +5 -0
- package/node_modules/lodash/fp/join.js +5 -0
- package/node_modules/lodash/fp/juxt.js +1 -0
- package/node_modules/lodash/fp/kebabCase.js +5 -0
- package/node_modules/lodash/fp/keyBy.js +5 -0
- package/node_modules/lodash/fp/keys.js +5 -0
- package/node_modules/lodash/fp/keysIn.js +5 -0
- package/node_modules/lodash/fp/lang.js +2 -0
- package/node_modules/lodash/fp/last.js +5 -0
- package/node_modules/lodash/fp/lastIndexOf.js +5 -0
- package/node_modules/lodash/fp/lastIndexOfFrom.js +5 -0
- package/node_modules/lodash/fp/lowerCase.js +5 -0
- package/node_modules/lodash/fp/lowerFirst.js +5 -0
- package/node_modules/lodash/fp/lt.js +5 -0
- package/node_modules/lodash/fp/lte.js +5 -0
- package/node_modules/lodash/fp/map.js +5 -0
- package/node_modules/lodash/fp/mapKeys.js +5 -0
- package/node_modules/lodash/fp/mapValues.js +5 -0
- package/node_modules/lodash/fp/matches.js +1 -0
- package/node_modules/lodash/fp/matchesProperty.js +5 -0
- package/node_modules/lodash/fp/math.js +2 -0
- package/node_modules/lodash/fp/max.js +5 -0
- package/node_modules/lodash/fp/maxBy.js +5 -0
- package/node_modules/lodash/fp/mean.js +5 -0
- package/node_modules/lodash/fp/meanBy.js +5 -0
- package/node_modules/lodash/fp/memoize.js +5 -0
- package/node_modules/lodash/fp/merge.js +5 -0
- package/node_modules/lodash/fp/mergeAll.js +5 -0
- package/node_modules/lodash/fp/mergeAllWith.js +5 -0
- package/node_modules/lodash/fp/mergeWith.js +5 -0
- package/node_modules/lodash/fp/method.js +5 -0
- package/node_modules/lodash/fp/methodOf.js +5 -0
- package/node_modules/lodash/fp/min.js +5 -0
- package/node_modules/lodash/fp/minBy.js +5 -0
- package/node_modules/lodash/fp/mixin.js +5 -0
- package/node_modules/lodash/fp/multiply.js +5 -0
- package/node_modules/lodash/fp/nAry.js +1 -0
- package/node_modules/lodash/fp/negate.js +5 -0
- package/node_modules/lodash/fp/next.js +5 -0
- package/node_modules/lodash/fp/noop.js +5 -0
- package/node_modules/lodash/fp/now.js +5 -0
- package/node_modules/lodash/fp/nth.js +5 -0
- package/node_modules/lodash/fp/nthArg.js +5 -0
- package/node_modules/lodash/fp/number.js +2 -0
- package/node_modules/lodash/fp/object.js +2 -0
- package/node_modules/lodash/fp/omit.js +5 -0
- package/node_modules/lodash/fp/omitAll.js +1 -0
- package/node_modules/lodash/fp/omitBy.js +5 -0
- package/node_modules/lodash/fp/once.js +5 -0
- package/node_modules/lodash/fp/orderBy.js +5 -0
- package/node_modules/lodash/fp/over.js +5 -0
- package/node_modules/lodash/fp/overArgs.js +5 -0
- package/node_modules/lodash/fp/overEvery.js +5 -0
- package/node_modules/lodash/fp/overSome.js +5 -0
- package/node_modules/lodash/fp/pad.js +5 -0
- package/node_modules/lodash/fp/padChars.js +5 -0
- package/node_modules/lodash/fp/padCharsEnd.js +5 -0
- package/node_modules/lodash/fp/padCharsStart.js +5 -0
- package/node_modules/lodash/fp/padEnd.js +5 -0
- package/node_modules/lodash/fp/padStart.js +5 -0
- package/node_modules/lodash/fp/parseInt.js +5 -0
- package/node_modules/lodash/fp/partial.js +5 -0
- package/node_modules/lodash/fp/partialRight.js +5 -0
- package/node_modules/lodash/fp/partition.js +5 -0
- package/node_modules/lodash/fp/path.js +1 -0
- package/node_modules/lodash/fp/pathEq.js +1 -0
- package/node_modules/lodash/fp/pathOr.js +1 -0
- package/node_modules/lodash/fp/paths.js +1 -0
- package/node_modules/lodash/fp/pick.js +5 -0
- package/node_modules/lodash/fp/pickAll.js +1 -0
- package/node_modules/lodash/fp/pickBy.js +5 -0
- package/node_modules/lodash/fp/pipe.js +1 -0
- package/node_modules/lodash/fp/placeholder.js +6 -0
- package/node_modules/lodash/fp/plant.js +5 -0
- package/node_modules/lodash/fp/pluck.js +1 -0
- package/node_modules/lodash/fp/prop.js +1 -0
- package/node_modules/lodash/fp/propEq.js +1 -0
- package/node_modules/lodash/fp/propOr.js +1 -0
- package/node_modules/lodash/fp/property.js +1 -0
- package/node_modules/lodash/fp/propertyOf.js +5 -0
- package/node_modules/lodash/fp/props.js +1 -0
- package/node_modules/lodash/fp/pull.js +5 -0
- package/node_modules/lodash/fp/pullAll.js +5 -0
- package/node_modules/lodash/fp/pullAllBy.js +5 -0
- package/node_modules/lodash/fp/pullAllWith.js +5 -0
- package/node_modules/lodash/fp/pullAt.js +5 -0
- package/node_modules/lodash/fp/random.js +5 -0
- package/node_modules/lodash/fp/range.js +5 -0
- package/node_modules/lodash/fp/rangeRight.js +5 -0
- package/node_modules/lodash/fp/rangeStep.js +5 -0
- package/node_modules/lodash/fp/rangeStepRight.js +5 -0
- package/node_modules/lodash/fp/rearg.js +5 -0
- package/node_modules/lodash/fp/reduce.js +5 -0
- package/node_modules/lodash/fp/reduceRight.js +5 -0
- package/node_modules/lodash/fp/reject.js +5 -0
- package/node_modules/lodash/fp/remove.js +5 -0
- package/node_modules/lodash/fp/repeat.js +5 -0
- package/node_modules/lodash/fp/replace.js +5 -0
- package/node_modules/lodash/fp/rest.js +5 -0
- package/node_modules/lodash/fp/restFrom.js +5 -0
- package/node_modules/lodash/fp/result.js +5 -0
- package/node_modules/lodash/fp/reverse.js +5 -0
- package/node_modules/lodash/fp/round.js +5 -0
- package/node_modules/lodash/fp/sample.js +5 -0
- package/node_modules/lodash/fp/sampleSize.js +5 -0
- package/node_modules/lodash/fp/seq.js +2 -0
- package/node_modules/lodash/fp/set.js +5 -0
- package/node_modules/lodash/fp/setWith.js +5 -0
- package/node_modules/lodash/fp/shuffle.js +5 -0
- package/node_modules/lodash/fp/size.js +5 -0
- package/node_modules/lodash/fp/slice.js +5 -0
- package/node_modules/lodash/fp/snakeCase.js +5 -0
- package/node_modules/lodash/fp/some.js +5 -0
- package/node_modules/lodash/fp/sortBy.js +5 -0
- package/node_modules/lodash/fp/sortedIndex.js +5 -0
- package/node_modules/lodash/fp/sortedIndexBy.js +5 -0
- package/node_modules/lodash/fp/sortedIndexOf.js +5 -0
- package/node_modules/lodash/fp/sortedLastIndex.js +5 -0
- package/node_modules/lodash/fp/sortedLastIndexBy.js +5 -0
- package/node_modules/lodash/fp/sortedLastIndexOf.js +5 -0
- package/node_modules/lodash/fp/sortedUniq.js +5 -0
- package/node_modules/lodash/fp/sortedUniqBy.js +5 -0
- package/node_modules/lodash/fp/split.js +5 -0
- package/node_modules/lodash/fp/spread.js +5 -0
- package/node_modules/lodash/fp/spreadFrom.js +5 -0
- package/node_modules/lodash/fp/startCase.js +5 -0
- package/node_modules/lodash/fp/startsWith.js +5 -0
- package/node_modules/lodash/fp/string.js +2 -0
- package/node_modules/lodash/fp/stubArray.js +5 -0
- package/node_modules/lodash/fp/stubFalse.js +5 -0
- package/node_modules/lodash/fp/stubObject.js +5 -0
- package/node_modules/lodash/fp/stubString.js +5 -0
- package/node_modules/lodash/fp/stubTrue.js +5 -0
- package/node_modules/lodash/fp/subtract.js +5 -0
- package/node_modules/lodash/fp/sum.js +5 -0
- package/node_modules/lodash/fp/sumBy.js +5 -0
- package/node_modules/lodash/fp/symmetricDifference.js +1 -0
- package/node_modules/lodash/fp/symmetricDifferenceBy.js +1 -0
- package/node_modules/lodash/fp/symmetricDifferenceWith.js +1 -0
- package/node_modules/lodash/fp/tail.js +5 -0
- package/node_modules/lodash/fp/take.js +5 -0
- package/node_modules/lodash/fp/takeLast.js +1 -0
- package/node_modules/lodash/fp/takeLastWhile.js +1 -0
- package/node_modules/lodash/fp/takeRight.js +5 -0
- package/node_modules/lodash/fp/takeRightWhile.js +5 -0
- package/node_modules/lodash/fp/takeWhile.js +5 -0
- package/node_modules/lodash/fp/tap.js +5 -0
- package/node_modules/lodash/fp/template.js +5 -0
- package/node_modules/lodash/fp/templateSettings.js +5 -0
- package/node_modules/lodash/fp/throttle.js +5 -0
- package/node_modules/lodash/fp/thru.js +5 -0
- package/node_modules/lodash/fp/times.js +5 -0
- package/node_modules/lodash/fp/toArray.js +5 -0
- package/node_modules/lodash/fp/toFinite.js +5 -0
- package/node_modules/lodash/fp/toInteger.js +5 -0
- package/node_modules/lodash/fp/toIterator.js +5 -0
- package/node_modules/lodash/fp/toJSON.js +5 -0
- package/node_modules/lodash/fp/toLength.js +5 -0
- package/node_modules/lodash/fp/toLower.js +5 -0
- package/node_modules/lodash/fp/toNumber.js +5 -0
- package/node_modules/lodash/fp/toPairs.js +5 -0
- package/node_modules/lodash/fp/toPairsIn.js +5 -0
- package/node_modules/lodash/fp/toPath.js +5 -0
- package/node_modules/lodash/fp/toPlainObject.js +5 -0
- package/node_modules/lodash/fp/toSafeInteger.js +5 -0
- package/node_modules/lodash/fp/toString.js +5 -0
- package/node_modules/lodash/fp/toUpper.js +5 -0
- package/node_modules/lodash/fp/transform.js +5 -0
- package/node_modules/lodash/fp/trim.js +5 -0
- package/node_modules/lodash/fp/trimChars.js +5 -0
- package/node_modules/lodash/fp/trimCharsEnd.js +5 -0
- package/node_modules/lodash/fp/trimCharsStart.js +5 -0
- package/node_modules/lodash/fp/trimEnd.js +5 -0
- package/node_modules/lodash/fp/trimStart.js +5 -0
- package/node_modules/lodash/fp/truncate.js +5 -0
- package/node_modules/lodash/fp/unapply.js +1 -0
- package/node_modules/lodash/fp/unary.js +5 -0
- package/node_modules/lodash/fp/unescape.js +5 -0
- package/node_modules/lodash/fp/union.js +5 -0
- package/node_modules/lodash/fp/unionBy.js +5 -0
- package/node_modules/lodash/fp/unionWith.js +5 -0
- package/node_modules/lodash/fp/uniq.js +5 -0
- package/node_modules/lodash/fp/uniqBy.js +5 -0
- package/node_modules/lodash/fp/uniqWith.js +5 -0
- package/node_modules/lodash/fp/uniqueId.js +5 -0
- package/node_modules/lodash/fp/unnest.js +1 -0
- package/node_modules/lodash/fp/unset.js +5 -0
- package/node_modules/lodash/fp/unzip.js +5 -0
- package/node_modules/lodash/fp/unzipWith.js +5 -0
- package/node_modules/lodash/fp/update.js +5 -0
- package/node_modules/lodash/fp/updateWith.js +5 -0
- package/node_modules/lodash/fp/upperCase.js +5 -0
- package/node_modules/lodash/fp/upperFirst.js +5 -0
- package/node_modules/lodash/fp/useWith.js +1 -0
- package/node_modules/lodash/fp/util.js +2 -0
- package/node_modules/lodash/fp/value.js +5 -0
- package/node_modules/lodash/fp/valueOf.js +5 -0
- package/node_modules/lodash/fp/values.js +5 -0
- package/node_modules/lodash/fp/valuesIn.js +5 -0
- package/node_modules/lodash/fp/where.js +1 -0
- package/node_modules/lodash/fp/whereEq.js +1 -0
- package/node_modules/lodash/fp/without.js +5 -0
- package/node_modules/lodash/fp/words.js +5 -0
- package/node_modules/lodash/fp/wrap.js +5 -0
- package/node_modules/lodash/fp/wrapperAt.js +5 -0
- package/node_modules/lodash/fp/wrapperChain.js +5 -0
- package/node_modules/lodash/fp/wrapperLodash.js +5 -0
- package/node_modules/lodash/fp/wrapperReverse.js +5 -0
- package/node_modules/lodash/fp/wrapperValue.js +5 -0
- package/node_modules/lodash/fp/xor.js +5 -0
- package/node_modules/lodash/fp/xorBy.js +5 -0
- package/node_modules/lodash/fp/xorWith.js +5 -0
- package/node_modules/lodash/fp/zip.js +5 -0
- package/node_modules/lodash/fp/zipAll.js +5 -0
- package/node_modules/lodash/fp/zipObj.js +1 -0
- package/node_modules/lodash/fp/zipObject.js +5 -0
- package/node_modules/lodash/fp/zipObjectDeep.js +5 -0
- package/node_modules/lodash/fp/zipWith.js +5 -0
- package/node_modules/lodash/fp.js +2 -0
- package/node_modules/lodash/fromPairs.js +28 -0
- package/node_modules/lodash/function.js +25 -0
- package/node_modules/lodash/functions.js +31 -0
- package/node_modules/lodash/functionsIn.js +31 -0
- package/node_modules/lodash/get.js +33 -0
- package/node_modules/lodash/groupBy.js +41 -0
- package/node_modules/lodash/gt.js +29 -0
- package/node_modules/lodash/gte.js +30 -0
- package/node_modules/lodash/has.js +35 -0
- package/node_modules/lodash/hasIn.js +34 -0
- package/node_modules/lodash/head.js +23 -0
- package/node_modules/lodash/identity.js +21 -0
- package/node_modules/lodash/inRange.js +55 -0
- package/node_modules/lodash/includes.js +53 -0
- package/node_modules/lodash/index.js +1 -0
- package/node_modules/lodash/indexOf.js +42 -0
- package/node_modules/lodash/initial.js +22 -0
- package/node_modules/lodash/intersection.js +30 -0
- package/node_modules/lodash/intersectionBy.js +45 -0
- package/node_modules/lodash/intersectionWith.js +41 -0
- package/node_modules/lodash/invert.js +42 -0
- package/node_modules/lodash/invertBy.js +56 -0
- package/node_modules/lodash/invoke.js +24 -0
- package/node_modules/lodash/invokeMap.js +41 -0
- package/node_modules/lodash/isArguments.js +36 -0
- package/node_modules/lodash/isArray.js +26 -0
- package/node_modules/lodash/isArrayBuffer.js +27 -0
- package/node_modules/lodash/isArrayLike.js +33 -0
- package/node_modules/lodash/isArrayLikeObject.js +33 -0
- package/node_modules/lodash/isBoolean.js +29 -0
- package/node_modules/lodash/isBuffer.js +38 -0
- package/node_modules/lodash/isDate.js +27 -0
- package/node_modules/lodash/isElement.js +25 -0
- package/node_modules/lodash/isEmpty.js +77 -0
- package/node_modules/lodash/isEqual.js +35 -0
- package/node_modules/lodash/isEqualWith.js +41 -0
- package/node_modules/lodash/isError.js +36 -0
- package/node_modules/lodash/isFinite.js +36 -0
- package/node_modules/lodash/isFunction.js +37 -0
- package/node_modules/lodash/isInteger.js +33 -0
- package/node_modules/lodash/isLength.js +35 -0
- package/node_modules/lodash/isMap.js +27 -0
- package/node_modules/lodash/isMatch.js +36 -0
- package/node_modules/lodash/isMatchWith.js +41 -0
- package/node_modules/lodash/isNaN.js +38 -0
- package/node_modules/lodash/isNative.js +40 -0
- package/node_modules/lodash/isNil.js +25 -0
- package/node_modules/lodash/isNull.js +22 -0
- package/node_modules/lodash/isNumber.js +38 -0
- package/node_modules/lodash/isObject.js +31 -0
- package/node_modules/lodash/isObjectLike.js +29 -0
- package/node_modules/lodash/isPlainObject.js +62 -0
- package/node_modules/lodash/isRegExp.js +27 -0
- package/node_modules/lodash/isSafeInteger.js +37 -0
- package/node_modules/lodash/isSet.js +27 -0
- package/node_modules/lodash/isString.js +30 -0
- package/node_modules/lodash/isSymbol.js +29 -0
- package/node_modules/lodash/isTypedArray.js +27 -0
- package/node_modules/lodash/isUndefined.js +22 -0
- package/node_modules/lodash/isWeakMap.js +28 -0
- package/node_modules/lodash/isWeakSet.js +28 -0
- package/node_modules/lodash/iteratee.js +53 -0
- package/node_modules/lodash/join.js +26 -0
- package/node_modules/lodash/kebabCase.js +28 -0
- package/node_modules/lodash/keyBy.js +36 -0
- package/node_modules/lodash/keys.js +37 -0
- package/node_modules/lodash/keysIn.js +32 -0
- package/node_modules/lodash/lang.js +58 -0
- package/node_modules/lodash/last.js +20 -0
- package/node_modules/lodash/lastIndexOf.js +46 -0
- package/node_modules/lodash/lodash.js +17209 -0
- package/node_modules/lodash/lodash.min.js +140 -0
- package/node_modules/lodash/lowerCase.js +27 -0
- package/node_modules/lodash/lowerFirst.js +22 -0
- package/node_modules/lodash/lt.js +29 -0
- package/node_modules/lodash/lte.js +30 -0
- package/node_modules/lodash/map.js +53 -0
- package/node_modules/lodash/mapKeys.js +36 -0
- package/node_modules/lodash/mapValues.js +43 -0
- package/node_modules/lodash/matches.js +46 -0
- package/node_modules/lodash/matchesProperty.js +44 -0
- package/node_modules/lodash/math.js +17 -0
- package/node_modules/lodash/max.js +29 -0
- package/node_modules/lodash/maxBy.js +34 -0
- package/node_modules/lodash/mean.js +22 -0
- package/node_modules/lodash/meanBy.js +31 -0
- package/node_modules/lodash/memoize.js +73 -0
- package/node_modules/lodash/merge.js +39 -0
- package/node_modules/lodash/mergeWith.js +39 -0
- package/node_modules/lodash/method.js +34 -0
- package/node_modules/lodash/methodOf.js +33 -0
- package/node_modules/lodash/min.js +29 -0
- package/node_modules/lodash/minBy.js +34 -0
- package/node_modules/lodash/mixin.js +74 -0
- package/node_modules/lodash/multiply.js +22 -0
- package/node_modules/lodash/negate.js +40 -0
- package/node_modules/lodash/next.js +35 -0
- package/node_modules/lodash/noop.js +17 -0
- package/node_modules/lodash/now.js +23 -0
- package/node_modules/lodash/nth.js +29 -0
- package/node_modules/lodash/nthArg.js +32 -0
- package/node_modules/lodash/number.js +5 -0
- package/node_modules/lodash/object.js +49 -0
- package/node_modules/lodash/omit.js +57 -0
- package/node_modules/lodash/omitBy.js +29 -0
- package/node_modules/lodash/once.js +25 -0
- package/node_modules/lodash/orderBy.js +47 -0
- package/node_modules/lodash/over.js +24 -0
- package/node_modules/lodash/overArgs.js +61 -0
- package/node_modules/lodash/overEvery.js +34 -0
- package/node_modules/lodash/overSome.js +37 -0
- package/node_modules/lodash/package.json +21 -0
- package/node_modules/lodash/pad.js +49 -0
- package/node_modules/lodash/padEnd.js +39 -0
- package/node_modules/lodash/padStart.js +39 -0
- package/node_modules/lodash/parseInt.js +43 -0
- package/node_modules/lodash/partial.js +50 -0
- package/node_modules/lodash/partialRight.js +49 -0
- package/node_modules/lodash/partition.js +43 -0
- package/node_modules/lodash/pick.js +25 -0
- package/node_modules/lodash/pickBy.js +37 -0
- package/node_modules/lodash/plant.js +48 -0
- package/node_modules/lodash/property.js +32 -0
- package/node_modules/lodash/propertyOf.js +30 -0
- package/node_modules/lodash/pull.js +29 -0
- package/node_modules/lodash/pullAll.js +29 -0
- package/node_modules/lodash/pullAllBy.js +33 -0
- package/node_modules/lodash/pullAllWith.js +32 -0
- package/node_modules/lodash/pullAt.js +43 -0
- package/node_modules/lodash/random.js +82 -0
- package/node_modules/lodash/range.js +46 -0
- package/node_modules/lodash/rangeRight.js +41 -0
- package/node_modules/lodash/rearg.js +33 -0
- package/node_modules/lodash/reduce.js +51 -0
- package/node_modules/lodash/reduceRight.js +36 -0
- package/node_modules/lodash/reject.js +46 -0
- package/node_modules/lodash/release.md +48 -0
- package/node_modules/lodash/remove.js +53 -0
- package/node_modules/lodash/repeat.js +37 -0
- package/node_modules/lodash/replace.js +29 -0
- package/node_modules/lodash/rest.js +40 -0
- package/node_modules/lodash/result.js +56 -0
- package/node_modules/lodash/reverse.js +34 -0
- package/node_modules/lodash/round.js +26 -0
- package/node_modules/lodash/sample.js +24 -0
- package/node_modules/lodash/sampleSize.js +37 -0
- package/node_modules/lodash/seq.js +16 -0
- package/node_modules/lodash/set.js +35 -0
- package/node_modules/lodash/setWith.js +32 -0
- package/node_modules/lodash/shuffle.js +25 -0
- package/node_modules/lodash/size.js +46 -0
- package/node_modules/lodash/slice.js +37 -0
- package/node_modules/lodash/snakeCase.js +28 -0
- package/node_modules/lodash/some.js +51 -0
- package/node_modules/lodash/sortBy.js +48 -0
- package/node_modules/lodash/sortedIndex.js +24 -0
- package/node_modules/lodash/sortedIndexBy.js +33 -0
- package/node_modules/lodash/sortedIndexOf.js +31 -0
- package/node_modules/lodash/sortedLastIndex.js +25 -0
- package/node_modules/lodash/sortedLastIndexBy.js +33 -0
- package/node_modules/lodash/sortedLastIndexOf.js +31 -0
- package/node_modules/lodash/sortedUniq.js +24 -0
- package/node_modules/lodash/sortedUniqBy.js +26 -0
- package/node_modules/lodash/split.js +52 -0
- package/node_modules/lodash/spread.js +63 -0
- package/node_modules/lodash/startCase.js +29 -0
- package/node_modules/lodash/startsWith.js +39 -0
- package/node_modules/lodash/string.js +33 -0
- package/node_modules/lodash/stubArray.js +23 -0
- package/node_modules/lodash/stubFalse.js +18 -0
- package/node_modules/lodash/stubObject.js +23 -0
- package/node_modules/lodash/stubString.js +18 -0
- package/node_modules/lodash/stubTrue.js +18 -0
- package/node_modules/lodash/subtract.js +22 -0
- package/node_modules/lodash/sum.js +24 -0
- package/node_modules/lodash/sumBy.js +33 -0
- package/node_modules/lodash/tail.js +22 -0
- package/node_modules/lodash/take.js +37 -0
- package/node_modules/lodash/takeRight.js +39 -0
- package/node_modules/lodash/takeRightWhile.js +45 -0
- package/node_modules/lodash/takeWhile.js +45 -0
- package/node_modules/lodash/tap.js +29 -0
- package/node_modules/lodash/template.js +272 -0
- package/node_modules/lodash/templateSettings.js +67 -0
- package/node_modules/lodash/throttle.js +69 -0
- package/node_modules/lodash/thru.js +28 -0
- package/node_modules/lodash/times.js +51 -0
- package/node_modules/lodash/toArray.js +58 -0
- package/node_modules/lodash/toFinite.js +42 -0
- package/node_modules/lodash/toInteger.js +36 -0
- package/node_modules/lodash/toIterator.js +23 -0
- package/node_modules/lodash/toJSON.js +1 -0
- package/node_modules/lodash/toLength.js +38 -0
- package/node_modules/lodash/toLower.js +28 -0
- package/node_modules/lodash/toNumber.js +64 -0
- package/node_modules/lodash/toPairs.js +30 -0
- package/node_modules/lodash/toPairsIn.js +30 -0
- package/node_modules/lodash/toPath.js +33 -0
- package/node_modules/lodash/toPlainObject.js +32 -0
- package/node_modules/lodash/toSafeInteger.js +37 -0
- package/node_modules/lodash/toString.js +28 -0
- package/node_modules/lodash/toUpper.js +28 -0
- package/node_modules/lodash/transform.js +65 -0
- package/node_modules/lodash/trim.js +47 -0
- package/node_modules/lodash/trimEnd.js +41 -0
- package/node_modules/lodash/trimStart.js +43 -0
- package/node_modules/lodash/truncate.js +111 -0
- package/node_modules/lodash/unary.js +22 -0
- package/node_modules/lodash/unescape.js +34 -0
- package/node_modules/lodash/union.js +26 -0
- package/node_modules/lodash/unionBy.js +39 -0
- package/node_modules/lodash/unionWith.js +34 -0
- package/node_modules/lodash/uniq.js +25 -0
- package/node_modules/lodash/uniqBy.js +31 -0
- package/node_modules/lodash/uniqWith.js +28 -0
- package/node_modules/lodash/uniqueId.js +28 -0
- package/node_modules/lodash/unset.js +34 -0
- package/node_modules/lodash/unzip.js +45 -0
- package/node_modules/lodash/unzipWith.js +39 -0
- package/node_modules/lodash/update.js +35 -0
- package/node_modules/lodash/updateWith.js +33 -0
- package/node_modules/lodash/upperCase.js +27 -0
- package/node_modules/lodash/upperFirst.js +22 -0
- package/node_modules/lodash/util.js +34 -0
- package/node_modules/lodash/value.js +1 -0
- package/node_modules/lodash/valueOf.js +1 -0
- package/node_modules/lodash/values.js +34 -0
- package/node_modules/lodash/valuesIn.js +32 -0
- package/node_modules/lodash/without.js +31 -0
- package/node_modules/lodash/words.js +35 -0
- package/node_modules/lodash/wrap.js +30 -0
- package/node_modules/lodash/wrapperAt.js +48 -0
- package/node_modules/lodash/wrapperChain.js +34 -0
- package/node_modules/lodash/wrapperLodash.js +147 -0
- package/node_modules/lodash/wrapperReverse.js +44 -0
- package/node_modules/lodash/wrapperValue.js +21 -0
- package/node_modules/lodash/xor.js +28 -0
- package/node_modules/lodash/xorBy.js +39 -0
- package/node_modules/lodash/xorWith.js +34 -0
- package/node_modules/lodash/zip.js +22 -0
- package/node_modules/lodash/zipObject.js +24 -0
- package/node_modules/lodash/zipObjectDeep.js +23 -0
- package/node_modules/lodash/zipWith.js +32 -0
- package/node_modules/lower-case/LICENSE +21 -0
- package/node_modules/lower-case/README.md +35 -0
- package/node_modules/lower-case/dist/index.d.ts +8 -0
- package/node_modules/lower-case/dist/index.js +53 -0
- package/node_modules/lower-case/dist/index.js.map +1 -0
- package/node_modules/lower-case/dist/index.spec.d.ts +1 -0
- package/node_modules/lower-case/dist/index.spec.js +36 -0
- package/node_modules/lower-case/dist/index.spec.js.map +1 -0
- package/node_modules/lower-case/dist.es2015/index.d.ts +8 -0
- package/node_modules/lower-case/dist.es2015/index.js +48 -0
- package/node_modules/lower-case/dist.es2015/index.js.map +1 -0
- package/node_modules/lower-case/dist.es2015/index.spec.d.ts +1 -0
- package/node_modules/lower-case/dist.es2015/index.spec.js +34 -0
- package/node_modules/lower-case/dist.es2015/index.spec.js.map +1 -0
- package/node_modules/lower-case/node_modules/tslib/CopyrightNotice.txt +15 -0
- package/node_modules/lower-case/node_modules/tslib/LICENSE.txt +12 -0
- package/node_modules/lower-case/node_modules/tslib/README.md +164 -0
- package/node_modules/lower-case/node_modules/tslib/modules/index.js +55 -0
- package/node_modules/lower-case/node_modules/tslib/modules/package.json +3 -0
- package/node_modules/lower-case/node_modules/tslib/package.json +42 -0
- package/node_modules/lower-case/node_modules/tslib/tslib.d.ts +398 -0
- package/node_modules/lower-case/node_modules/tslib/tslib.es6.html +1 -0
- package/node_modules/lower-case/node_modules/tslib/tslib.es6.js +248 -0
- package/node_modules/lower-case/node_modules/tslib/tslib.html +1 -0
- package/node_modules/lower-case/node_modules/tslib/tslib.js +317 -0
- package/node_modules/lower-case/package.json +91 -0
- package/node_modules/no-case/LICENSE +21 -0
- package/node_modules/no-case/README.md +37 -0
- package/node_modules/no-case/dist/index.d.ts +10 -0
- package/node_modules/no-case/dist/index.js +35 -0
- package/node_modules/no-case/dist/index.js.map +1 -0
- package/node_modules/no-case/dist/index.spec.d.ts +1 -0
- package/node_modules/no-case/dist/index.spec.js +59 -0
- package/node_modules/no-case/dist/index.spec.js.map +1 -0
- package/node_modules/no-case/dist.es2015/index.d.ts +10 -0
- package/node_modules/no-case/dist.es2015/index.js +31 -0
- package/node_modules/no-case/dist.es2015/index.js.map +1 -0
- package/node_modules/no-case/dist.es2015/index.spec.d.ts +1 -0
- package/node_modules/no-case/dist.es2015/index.spec.js +57 -0
- package/node_modules/no-case/dist.es2015/index.spec.js.map +1 -0
- package/node_modules/no-case/node_modules/tslib/CopyrightNotice.txt +15 -0
- package/node_modules/no-case/node_modules/tslib/LICENSE.txt +12 -0
- package/node_modules/no-case/node_modules/tslib/README.md +164 -0
- package/node_modules/no-case/node_modules/tslib/modules/index.js +55 -0
- package/node_modules/no-case/node_modules/tslib/modules/package.json +3 -0
- package/node_modules/no-case/node_modules/tslib/package.json +42 -0
- package/node_modules/no-case/node_modules/tslib/tslib.d.ts +398 -0
- package/node_modules/no-case/node_modules/tslib/tslib.es6.html +1 -0
- package/node_modules/no-case/node_modules/tslib/tslib.es6.js +248 -0
- package/node_modules/no-case/node_modules/tslib/tslib.html +1 -0
- package/node_modules/no-case/node_modules/tslib/tslib.js +317 -0
- package/node_modules/no-case/package.json +89 -0
- package/node_modules/nunjucks/CHANGELOG.md +736 -0
- package/node_modules/nunjucks/LICENSE +26 -0
- package/node_modules/nunjucks/README.md +58 -0
- package/node_modules/nunjucks/bin/precompile +58 -0
- package/node_modules/nunjucks/bin/precompile.cmd +5 -0
- package/node_modules/nunjucks/browser/nunjucks-slim.js +4263 -0
- package/node_modules/nunjucks/browser/nunjucks-slim.js.map +1 -0
- package/node_modules/nunjucks/browser/nunjucks-slim.min.js +3 -0
- package/node_modules/nunjucks/browser/nunjucks-slim.min.js.map +1 -0
- package/node_modules/nunjucks/browser/nunjucks.js +8423 -0
- package/node_modules/nunjucks/browser/nunjucks.js.map +1 -0
- package/node_modules/nunjucks/browser/nunjucks.min.js +3 -0
- package/node_modules/nunjucks/browser/nunjucks.min.js.map +1 -0
- package/node_modules/nunjucks/index.js +103 -0
- package/node_modules/nunjucks/node_modules/commander/CHANGELOG.md +385 -0
- package/node_modules/nunjucks/node_modules/commander/LICENSE +22 -0
- package/node_modules/nunjucks/node_modules/commander/Readme.md +737 -0
- package/node_modules/nunjucks/node_modules/commander/index.js +1756 -0
- package/node_modules/nunjucks/node_modules/commander/package.json +52 -0
- package/node_modules/nunjucks/node_modules/commander/typings/index.d.ts +386 -0
- package/node_modules/nunjucks/package.json +116 -0
- package/node_modules/nunjucks/src/compiler.js +1449 -0
- package/node_modules/nunjucks/src/environment.js +659 -0
- package/node_modules/nunjucks/src/express-app.js +28 -0
- package/node_modules/nunjucks/src/filters.js +680 -0
- package/node_modules/nunjucks/src/globals.js +72 -0
- package/node_modules/nunjucks/src/jinja-compat.js +358 -0
- package/node_modules/nunjucks/src/lexer.js +542 -0
- package/node_modules/nunjucks/src/lib.js +417 -0
- package/node_modules/nunjucks/src/loader.js +30 -0
- package/node_modules/nunjucks/src/loaders.js +5 -0
- package/node_modules/nunjucks/src/node-loaders.js +177 -0
- package/node_modules/nunjucks/src/nodes.js +394 -0
- package/node_modules/nunjucks/src/object.js +129 -0
- package/node_modules/nunjucks/src/parser.js +1267 -0
- package/node_modules/nunjucks/src/precompile-global.js +22 -0
- package/node_modules/nunjucks/src/precompile.js +131 -0
- package/node_modules/nunjucks/src/precompiled-loader.js +41 -0
- package/node_modules/nunjucks/src/runtime.js +405 -0
- package/node_modules/nunjucks/src/tests.js +286 -0
- package/node_modules/nunjucks/src/transformer.js +197 -0
- package/node_modules/nunjucks/src/web-loaders.js +110 -0
- package/node_modules/param-case/LICENSE +21 -0
- package/node_modules/param-case/README.md +37 -0
- package/node_modules/param-case/dist/index.d.ts +3 -0
- package/node_modules/param-case/dist/index.js +11 -0
- package/node_modules/param-case/dist/index.js.map +1 -0
- package/node_modules/param-case/dist/index.spec.d.ts +1 -0
- package/node_modules/param-case/dist/index.spec.js +24 -0
- package/node_modules/param-case/dist/index.spec.js.map +1 -0
- package/node_modules/param-case/dist.es2015/index.d.ts +3 -0
- package/node_modules/param-case/dist.es2015/index.js +7 -0
- package/node_modules/param-case/dist.es2015/index.js.map +1 -0
- package/node_modules/param-case/dist.es2015/index.spec.d.ts +1 -0
- package/node_modules/param-case/dist.es2015/index.spec.js +22 -0
- package/node_modules/param-case/dist.es2015/index.spec.js.map +1 -0
- package/node_modules/param-case/node_modules/tslib/CopyrightNotice.txt +15 -0
- package/node_modules/param-case/node_modules/tslib/LICENSE.txt +12 -0
- package/node_modules/param-case/node_modules/tslib/README.md +164 -0
- package/node_modules/param-case/node_modules/tslib/modules/index.js +55 -0
- package/node_modules/param-case/node_modules/tslib/modules/package.json +3 -0
- package/node_modules/param-case/node_modules/tslib/package.json +42 -0
- package/node_modules/param-case/node_modules/tslib/tslib.d.ts +398 -0
- package/node_modules/param-case/node_modules/tslib/tslib.es6.html +1 -0
- package/node_modules/param-case/node_modules/tslib/tslib.es6.js +248 -0
- package/node_modules/param-case/node_modules/tslib/tslib.html +1 -0
- package/node_modules/param-case/node_modules/tslib/tslib.js +317 -0
- package/node_modules/param-case/package.json +95 -0
- package/node_modules/pascal-case/LICENSE +21 -0
- package/node_modules/pascal-case/README.md +47 -0
- package/node_modules/pascal-case/dist/index.d.ts +5 -0
- package/node_modules/pascal-case/dist/index.js +24 -0
- package/node_modules/pascal-case/dist/index.js.map +1 -0
- package/node_modules/pascal-case/dist/index.spec.d.ts +1 -0
- package/node_modules/pascal-case/dist/index.spec.js +25 -0
- package/node_modules/pascal-case/dist/index.spec.js.map +1 -0
- package/node_modules/pascal-case/dist.es2015/index.d.ts +5 -0
- package/node_modules/pascal-case/dist.es2015/index.js +18 -0
- package/node_modules/pascal-case/dist.es2015/index.js.map +1 -0
- package/node_modules/pascal-case/dist.es2015/index.spec.d.ts +1 -0
- package/node_modules/pascal-case/dist.es2015/index.spec.js +23 -0
- package/node_modules/pascal-case/dist.es2015/index.spec.js.map +1 -0
- package/node_modules/pascal-case/node_modules/tslib/CopyrightNotice.txt +15 -0
- package/node_modules/pascal-case/node_modules/tslib/LICENSE.txt +12 -0
- package/node_modules/pascal-case/node_modules/tslib/README.md +164 -0
- package/node_modules/pascal-case/node_modules/tslib/modules/index.js +55 -0
- package/node_modules/pascal-case/node_modules/tslib/modules/package.json +3 -0
- package/node_modules/pascal-case/node_modules/tslib/package.json +42 -0
- package/node_modules/pascal-case/node_modules/tslib/tslib.d.ts +398 -0
- package/node_modules/pascal-case/node_modules/tslib/tslib.es6.html +1 -0
- package/node_modules/pascal-case/node_modules/tslib/tslib.es6.js +248 -0
- package/node_modules/pascal-case/node_modules/tslib/tslib.html +1 -0
- package/node_modules/pascal-case/node_modules/tslib/tslib.js +317 -0
- package/node_modules/pascal-case/package.json +94 -0
- package/node_modules/path-case/LICENSE +21 -0
- package/node_modules/path-case/README.md +37 -0
- package/node_modules/path-case/dist/index.d.ts +3 -0
- package/node_modules/path-case/dist/index.js +11 -0
- package/node_modules/path-case/dist/index.js.map +1 -0
- package/node_modules/path-case/dist/index.spec.d.ts +1 -0
- package/node_modules/path-case/dist/index.spec.js +24 -0
- package/node_modules/path-case/dist/index.spec.js.map +1 -0
- package/node_modules/path-case/dist.es2015/index.d.ts +3 -0
- package/node_modules/path-case/dist.es2015/index.js +7 -0
- package/node_modules/path-case/dist.es2015/index.js.map +1 -0
- package/node_modules/path-case/dist.es2015/index.spec.d.ts +1 -0
- package/node_modules/path-case/dist.es2015/index.spec.js +22 -0
- package/node_modules/path-case/dist.es2015/index.spec.js.map +1 -0
- package/node_modules/path-case/node_modules/tslib/CopyrightNotice.txt +15 -0
- package/node_modules/path-case/node_modules/tslib/LICENSE.txt +12 -0
- package/node_modules/path-case/node_modules/tslib/README.md +164 -0
- package/node_modules/path-case/node_modules/tslib/modules/index.js +55 -0
- package/node_modules/path-case/node_modules/tslib/modules/package.json +3 -0
- package/node_modules/path-case/node_modules/tslib/package.json +42 -0
- package/node_modules/path-case/node_modules/tslib/tslib.d.ts +398 -0
- package/node_modules/path-case/node_modules/tslib/tslib.es6.html +1 -0
- package/node_modules/path-case/node_modules/tslib/tslib.es6.js +248 -0
- package/node_modules/path-case/node_modules/tslib/tslib.html +1 -0
- package/node_modules/path-case/node_modules/tslib/tslib.js +317 -0
- package/node_modules/path-case/package.json +92 -0
- package/node_modules/sentence-case/LICENSE +21 -0
- package/node_modules/sentence-case/README.md +37 -0
- package/node_modules/sentence-case/dist/index.d.ts +4 -0
- package/node_modules/sentence-case/dist/index.js +19 -0
- package/node_modules/sentence-case/dist/index.js.map +1 -0
- package/node_modules/sentence-case/dist/index.spec.d.ts +1 -0
- package/node_modules/sentence-case/dist/index.spec.js +24 -0
- package/node_modules/sentence-case/dist/index.spec.js.map +1 -0
- package/node_modules/sentence-case/dist.es2015/index.d.ts +4 -0
- package/node_modules/sentence-case/dist.es2015/index.js +14 -0
- package/node_modules/sentence-case/dist.es2015/index.js.map +1 -0
- package/node_modules/sentence-case/dist.es2015/index.spec.d.ts +1 -0
- package/node_modules/sentence-case/dist.es2015/index.spec.js +22 -0
- package/node_modules/sentence-case/dist.es2015/index.spec.js.map +1 -0
- package/node_modules/sentence-case/node_modules/tslib/CopyrightNotice.txt +15 -0
- package/node_modules/sentence-case/node_modules/tslib/LICENSE.txt +12 -0
- package/node_modules/sentence-case/node_modules/tslib/README.md +164 -0
- package/node_modules/sentence-case/node_modules/tslib/modules/index.js +55 -0
- package/node_modules/sentence-case/node_modules/tslib/modules/package.json +3 -0
- package/node_modules/sentence-case/node_modules/tslib/package.json +42 -0
- package/node_modules/sentence-case/node_modules/tslib/tslib.d.ts +398 -0
- package/node_modules/sentence-case/node_modules/tslib/tslib.es6.html +1 -0
- package/node_modules/sentence-case/node_modules/tslib/tslib.es6.js +248 -0
- package/node_modules/sentence-case/node_modules/tslib/tslib.html +1 -0
- package/node_modules/sentence-case/node_modules/tslib/tslib.js +317 -0
- package/node_modules/sentence-case/package.json +93 -0
- package/node_modules/snake-case/LICENSE +21 -0
- package/node_modules/snake-case/README.md +37 -0
- package/node_modules/snake-case/dist/index.d.ts +3 -0
- package/node_modules/snake-case/dist/index.js +11 -0
- package/node_modules/snake-case/dist/index.js.map +1 -0
- package/node_modules/snake-case/dist/index.spec.d.ts +1 -0
- package/node_modules/snake-case/dist/index.spec.js +25 -0
- package/node_modules/snake-case/dist/index.spec.js.map +1 -0
- package/node_modules/snake-case/dist.es2015/index.d.ts +3 -0
- package/node_modules/snake-case/dist.es2015/index.js +7 -0
- package/node_modules/snake-case/dist.es2015/index.js.map +1 -0
- package/node_modules/snake-case/dist.es2015/index.spec.d.ts +1 -0
- package/node_modules/snake-case/dist.es2015/index.spec.js +23 -0
- package/node_modules/snake-case/dist.es2015/index.spec.js.map +1 -0
- package/node_modules/snake-case/node_modules/tslib/CopyrightNotice.txt +15 -0
- package/node_modules/snake-case/node_modules/tslib/LICENSE.txt +12 -0
- package/node_modules/snake-case/node_modules/tslib/README.md +164 -0
- package/node_modules/snake-case/node_modules/tslib/modules/index.js +55 -0
- package/node_modules/snake-case/node_modules/tslib/modules/package.json +3 -0
- package/node_modules/snake-case/node_modules/tslib/package.json +42 -0
- package/node_modules/snake-case/node_modules/tslib/tslib.d.ts +398 -0
- package/node_modules/snake-case/node_modules/tslib/tslib.es6.html +1 -0
- package/node_modules/snake-case/node_modules/tslib/tslib.es6.js +248 -0
- package/node_modules/snake-case/node_modules/tslib/tslib.html +1 -0
- package/node_modules/snake-case/node_modules/tslib/tslib.js +317 -0
- package/node_modules/snake-case/package.json +94 -0
- package/node_modules/upper-case/README.md +34 -0
- package/node_modules/upper-case/dist/index.d.ts +8 -0
- package/node_modules/upper-case/dist/index.js +49 -0
- package/node_modules/upper-case/dist/index.js.map +1 -0
- package/node_modules/upper-case/dist/index.spec.d.ts +1 -0
- package/node_modules/upper-case/dist/index.spec.js +34 -0
- package/node_modules/upper-case/dist/index.spec.js.map +1 -0
- package/node_modules/upper-case/dist.es2015/index.d.ts +8 -0
- package/node_modules/upper-case/dist.es2015/index.js +44 -0
- package/node_modules/upper-case/dist.es2015/index.js.map +1 -0
- package/node_modules/upper-case/dist.es2015/index.spec.d.ts +1 -0
- package/node_modules/upper-case/dist.es2015/index.spec.js +32 -0
- package/node_modules/upper-case/dist.es2015/index.spec.js.map +1 -0
- package/node_modules/upper-case/node_modules/tslib/CopyrightNotice.txt +15 -0
- package/node_modules/upper-case/node_modules/tslib/LICENSE.txt +12 -0
- package/node_modules/upper-case/node_modules/tslib/README.md +164 -0
- package/node_modules/upper-case/node_modules/tslib/modules/index.js +55 -0
- package/node_modules/upper-case/node_modules/tslib/modules/package.json +3 -0
- package/node_modules/upper-case/node_modules/tslib/package.json +42 -0
- package/node_modules/upper-case/node_modules/tslib/tslib.d.ts +398 -0
- package/node_modules/upper-case/node_modules/tslib/tslib.es6.html +1 -0
- package/node_modules/upper-case/node_modules/tslib/tslib.es6.js +248 -0
- package/node_modules/upper-case/node_modules/tslib/tslib.html +1 -0
- package/node_modules/upper-case/node_modules/tslib/tslib.js +317 -0
- package/node_modules/upper-case/package.json +90 -0
- package/node_modules/upper-case-first/LICENSE +21 -0
- package/node_modules/upper-case-first/README.md +32 -0
- package/node_modules/upper-case-first/dist/index.d.ts +4 -0
- package/node_modules/upper-case-first/dist/index.js +11 -0
- package/node_modules/upper-case-first/dist/index.js.map +1 -0
- package/node_modules/upper-case-first/dist/index.spec.d.ts +1 -0
- package/node_modules/upper-case-first/dist/index.spec.js +20 -0
- package/node_modules/upper-case-first/dist/index.spec.js.map +1 -0
- package/node_modules/upper-case-first/dist.es2015/index.d.ts +4 -0
- package/node_modules/upper-case-first/dist.es2015/index.js +7 -0
- package/node_modules/upper-case-first/dist.es2015/index.js.map +1 -0
- package/node_modules/upper-case-first/dist.es2015/index.spec.d.ts +1 -0
- package/node_modules/upper-case-first/dist.es2015/index.spec.js +18 -0
- package/node_modules/upper-case-first/dist.es2015/index.spec.js.map +1 -0
- package/node_modules/upper-case-first/node_modules/tslib/CopyrightNotice.txt +15 -0
- package/node_modules/upper-case-first/node_modules/tslib/LICENSE.txt +12 -0
- package/node_modules/upper-case-first/node_modules/tslib/README.md +164 -0
- package/node_modules/upper-case-first/node_modules/tslib/modules/index.js +55 -0
- package/node_modules/upper-case-first/node_modules/tslib/modules/package.json +3 -0
- package/node_modules/upper-case-first/node_modules/tslib/package.json +42 -0
- package/node_modules/upper-case-first/node_modules/tslib/tslib.d.ts +398 -0
- package/node_modules/upper-case-first/node_modules/tslib/tslib.es6.html +1 -0
- package/node_modules/upper-case-first/node_modules/tslib/tslib.es6.js +248 -0
- package/node_modules/upper-case-first/node_modules/tslib/tslib.html +1 -0
- package/node_modules/upper-case-first/node_modules/tslib/tslib.js +317 -0
- package/node_modules/upper-case-first/package.json +91 -0
- package/package.json +149 -0
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="1182px" height="684px" viewBox="-0.5 -0.5 1182 684"><defs><linearGradient x1="0%" y1="100%" x2="0%" y2="0%" id="mx-gradient-945df2-1-5a30b5-1-s-0"><stop offset="0%" style="stop-color: rgb(90, 48, 181); stop-opacity: 1;"/><stop offset="100%" style="stop-color: rgb(148, 93, 242); stop-opacity: 1;"/></linearGradient><linearGradient x1="0%" y1="100%" x2="0%" y2="0%" id="mx-gradient-f34482-1-bc1356-1-s-0"><stop offset="0%" style="stop-color: rgb(188, 19, 86); stop-opacity: 1;"/><stop offset="100%" style="stop-color: rgb(243, 68, 130); stop-opacity: 1;"/></linearGradient><linearGradient x1="0%" y1="100%" x2="0%" y2="0%" id="mx-gradient-f78e04-1-d05c17-1-s-0"><stop offset="0%" style="stop-color: rgb(208, 92, 23); stop-opacity: 1;"/><stop offset="100%" style="stop-color: rgb(247, 142, 4); stop-opacity: 1;"/></linearGradient><linearGradient x1="0%" y1="100%" x2="0%" y2="0%" id="mx-gradient-ff4f8b-1-bc1356-1-s-0"><stop offset="0%" style="stop-color: rgb(188, 19, 86); stop-opacity: 1;"/><stop offset="100%" style="stop-color: rgb(255, 79, 139); stop-opacity: 1;"/></linearGradient><linearGradient x1="0%" y1="100%" x2="0%" y2="0%" id="mx-gradient-60a337-1-277116-1-s-0"><stop offset="0%" style="stop-color: rgb(39, 113, 22); stop-opacity: 1;"/><stop offset="100%" style="stop-color: rgb(96, 163, 55); stop-opacity: 1;"/></linearGradient><linearGradient x1="0%" y1="100%" x2="0%" y2="0%" id="mx-gradient-4d72f3-1-3334b9-1-s-0"><stop offset="0%" style="stop-color: rgb(51, 52, 185); stop-opacity: 1;"/><stop offset="100%" style="stop-color: rgb(77, 114, 243); stop-opacity: 1;"/></linearGradient><style type="text/css">@import url("data:application/x-font-ttf;charset=utf-8;base64,LyogY3lyaWxsaWMtZXh0ICovCkBmb250LWZhY2UgewogIGZvbnQtZmFtaWx5OiAnUnViaWsnOwogIGZvbnQtc3R5bGU6IG5vcm1hbDsKICBmb250LXdlaWdodDogNDAwOwogIGZvbnQtZGlzcGxheTogc3dhcDsKICBzcmM6IHVybChodHRwczovL2ZvbnRzLmdzdGF0aWMuY29tL3MvcnViaWsvdjIxL2lKV1pCWHlJZkRuSVY1UE5oWTFLVE43Wi1ZaC1CNGlGV2tVemRZUEZrWlZPQTZ3LndvZmYpIGZvcm1hdCgnd29mZicpOwogIHVuaWNvZGUtcmFuZ2U6IFUrMDQ2MC0wNTJGLCBVKzFDODAtMUM4OCwgVSsyMEI0LCBVKzJERTAtMkRGRiwgVStBNjQwLUE2OUYsIFUrRkUyRS1GRTJGOwp9Ci8qIGN5cmlsbGljICovCkBmb250LWZhY2UgewogIGZvbnQtZmFtaWx5OiAnUnViaWsnOwogIGZvbnQtc3R5bGU6IG5vcm1hbDsKICBmb250LXdlaWdodDogNDAwOwogIGZvbnQtZGlzcGxheTogc3dhcDsKICBzcmM6IHVybChodHRwczovL2ZvbnRzLmdzdGF0aWMuY29tL3MvcnViaWsvdjIxL2lKV1pCWHlJZkRuSVY1UE5oWTFLVE43Wi1ZaC1CNGlGVTBVemRZUEZrWlZPQTZ3LndvZmYpIGZvcm1hdCgnd29mZicpOwogIHVuaWNvZGUtcmFuZ2U6IFUrMDMwMSwgVSswNDAwLTA0NUYsIFUrMDQ5MC0wNDkxLCBVKzA0QjAtMDRCMSwgVSsyMTE2Owp9Ci8qIGhlYnJldyAqLwpAZm9udC1mYWNlIHsKICBmb250LWZhbWlseTogJ1J1YmlrJzsKICBmb250LXN0eWxlOiBub3JtYWw7CiAgZm9udC13ZWlnaHQ6IDQwMDsKICBmb250LWRpc3BsYXk6IHN3YXA7CiAgc3JjOiB1cmwoaHR0cHM6Ly9mb250cy5nc3RhdGljLmNvbS9zL3J1YmlrL3YyMS9pSldaQlh5SWZEbklWNVBOaFkxS1RON1otWWgtQjRpRlZVVXpkWVBGa1pWT0E2dy53b2ZmKSBmb3JtYXQoJ3dvZmYnKTsKICB1bmljb2RlLXJhbmdlOiBVKzA1OTAtMDVGRiwgVSsyMDBDLTIwMTAsIFUrMjBBQSwgVSsyNUNDLCBVK0ZCMUQtRkI0RjsKfQovKiBsYXRpbi1leHQgKi8KQGZvbnQtZmFjZSB7CiAgZm9udC1mYW1pbHk6ICdSdWJpayc7CiAgZm9udC1zdHlsZTogbm9ybWFsOwogIGZvbnQtd2VpZ2h0OiA0MDA7CiAgZm9udC1kaXNwbGF5OiBzd2FwOwogIHNyYzogdXJsKGh0dHBzOi8vZm9udHMuZ3N0YXRpYy5jb20vcy9ydWJpay92MjEvaUpXWkJYeUlmRG5JVjVQTmhZMUtUTjdaLVloLUI0aUZXVVV6ZFlQRmtaVk9BNncud29mZikgZm9ybWF0KCd3b2ZmJyk7CiAgdW5pY29kZS1yYW5nZTogVSswMTAwLTAyNEYsIFUrMDI1OSwgVSsxRTAwLTFFRkYsIFUrMjAyMCwgVSsyMEEwLTIwQUIsIFUrMjBBRC0yMENGLCBVKzIxMTMsIFUrMkM2MC0yQzdGLCBVK0E3MjAtQTdGRjsKfQovKiBsYXRpbiAqLwpAZm9udC1mYWNlIHsKICBmb250LWZhbWlseTogJ1J1YmlrJzsKICBmb250LXN0eWxlOiBub3JtYWw7CiAgZm9udC13ZWlnaHQ6IDQwMDsKICBmb250LWRpc3BsYXk6IHN3YXA7CiAgc3JjOiB1cmwoaHR0cHM6Ly9mb250cy5nc3RhdGljLmNvbS9zL3J1YmlrL3YyMS9pSldaQlh5SWZEbklWNVBOaFkxS1RON1otWWgtQjRpRlYwVXpkWVBGa1pWTy53b2ZmKSBmb3JtYXQoJ3dvZmYnKTsKICB1bmljb2RlLXJhbmdlOiBVKzAwMDAtMDBGRiwgVSswMTMxLCBVKzAxNTItMDE1MywgVSswMkJCLTAyQkMsIFUrMDJDNiwgVSswMkRBLCBVKzAyREMsIFUrMjAwMC0yMDZGLCBVKzIwNzQsIFUrMjBBQywgVSsyMTIyLCBVKzIxOTEsIFUrMjE5MywgVSsyMjEyLCBVKzIyMTUsIFUrRkVGRiwgVStGRkZEOwp9Cg=="), @import url("data:application/x-font-ttf;charset=utf-8;base64,LyogY3lyaWxsaWMtZXh0ICovCkBmb250LWZhY2UgewogIGZvbnQtZmFtaWx5OiAnRmlyYSBDb2RlJzsKICBmb250LXN0eWxlOiBub3JtYWw7CiAgZm9udC13ZWlnaHQ6IDQwMDsKICBmb250LWRpc3BsYXk6IHN3YXA7CiAgc3JjOiB1cmwoaHR0cHM6Ly9mb250cy5nc3RhdGljLmNvbS9zL2ZpcmFjb2RlL3YyMS91VTllQ0JzUjZaMnZmRTlhcTNiTDBmeHlVczR0Y3c0V19EMXNKVjM3TU96bG9qd1VLYUpPLndvZmYpIGZvcm1hdCgnd29mZicpOwogIHVuaWNvZGUtcmFuZ2U6IFUrMDQ2MC0wNTJGLCBVKzFDODAtMUM4OCwgVSsyMEI0LCBVKzJERTAtMkRGRiwgVStBNjQwLUE2OUYsIFUrRkUyRS1GRTJGOwp9Ci8qIGN5cmlsbGljICovCkBmb250LWZhY2UgewogIGZvbnQtZmFtaWx5OiAnRmlyYSBDb2RlJzsKICBmb250LXN0eWxlOiBub3JtYWw7CiAgZm9udC13ZWlnaHQ6IDQwMDsKICBmb250LWRpc3BsYXk6IHN3YXA7CiAgc3JjOiB1cmwoaHR0cHM6Ly9mb250cy5nc3RhdGljLmNvbS9zL2ZpcmFjb2RlL3YyMS91VTllQ0JzUjZaMnZmRTlhcTNiTDBmeHlVczR0Y3c0V19EMXNKVlQ3TU96bG9qd1VLYUpPLndvZmYpIGZvcm1hdCgnd29mZicpOwogIHVuaWNvZGUtcmFuZ2U6IFUrMDMwMSwgVSswNDAwLTA0NUYsIFUrMDQ5MC0wNDkxLCBVKzA0QjAtMDRCMSwgVSsyMTE2Owp9Ci8qIGdyZWVrLWV4dCAqLwpAZm9udC1mYWNlIHsKICBmb250LWZhbWlseTogJ0ZpcmEgQ29kZSc7CiAgZm9udC1zdHlsZTogbm9ybWFsOwogIGZvbnQtd2VpZ2h0OiA0MDA7CiAgZm9udC1kaXNwbGF5OiBzd2FwOwogIHNyYzogdXJsKGh0dHBzOi8vZm9udHMuZ3N0YXRpYy5jb20vcy9maXJhY29kZS92MjEvdVU5ZUNCc1I2WjJ2ZkU5YXEzYkwwZnh5VXM0dGN3NFdfRDFzSlZ6N01PemxvandVS2FKTy53b2ZmKSBmb3JtYXQoJ3dvZmYnKTsKICB1bmljb2RlLXJhbmdlOiBVKzFGMDAtMUZGRjsKfQovKiBncmVlayAqLwpAZm9udC1mYWNlIHsKICBmb250LWZhbWlseTogJ0ZpcmEgQ29kZSc7CiAgZm9udC1zdHlsZTogbm9ybWFsOwogIGZvbnQtd2VpZ2h0OiA0MDA7CiAgZm9udC1kaXNwbGF5OiBzd2FwOwogIHNyYzogdXJsKGh0dHBzOi8vZm9udHMuZ3N0YXRpYy5jb20vcy9maXJhY29kZS92MjEvdVU5ZUNCc1I2WjJ2ZkU5YXEzYkwwZnh5VXM0dGN3NFdfRDFzSlZQN01PemxvandVS2FKTy53b2ZmKSBmb3JtYXQoJ3dvZmYnKTsKICB1bmljb2RlLXJhbmdlOiBVKzAzNzAtMDNGRjsKfQovKiBsYXRpbi1leHQgKi8KQGZvbnQtZmFjZSB7CiAgZm9udC1mYW1pbHk6ICdGaXJhIENvZGUnOwogIGZvbnQtc3R5bGU6IG5vcm1hbDsKICBmb250LXdlaWdodDogNDAwOwogIGZvbnQtZGlzcGxheTogc3dhcDsKICBzcmM6IHVybChodHRwczovL2ZvbnRzLmdzdGF0aWMuY29tL3MvZmlyYWNvZGUvdjIxL3VVOWVDQnNSNloydmZFOWFxM2JMMGZ4eVVzNHRjdzRXX0Qxc0pWNzdNT3psb2p3VUthSk8ud29mZikgZm9ybWF0KCd3b2ZmJyk7CiAgdW5pY29kZS1yYW5nZTogVSswMTAwLTAyNEYsIFUrMDI1OSwgVSsxRTAwLTFFRkYsIFUrMjAyMCwgVSsyMEEwLTIwQUIsIFUrMjBBRC0yMENGLCBVKzIxMTMsIFUrMkM2MC0yQzdGLCBVK0E3MjAtQTdGRjsKfQovKiBsYXRpbiAqLwpAZm9udC1mYWNlIHsKICBmb250LWZhbWlseTogJ0ZpcmEgQ29kZSc7CiAgZm9udC1zdHlsZTogbm9ybWFsOwogIGZvbnQtd2VpZ2h0OiA0MDA7CiAgZm9udC1kaXNwbGF5OiBzd2FwOwogIHNyYzogdXJsKGh0dHBzOi8vZm9udHMuZ3N0YXRpYy5jb20vcy9maXJhY29kZS92MjEvdVU5ZUNCc1I2WjJ2ZkU5YXEzYkwwZnh5VXM0dGN3NFdfRDFzSlZEN01PemxvandVS1Eud29mZikgZm9ybWF0KCd3b2ZmJyk7CiAgdW5pY29kZS1yYW5nZTogVSswMDAwLTAwRkYsIFUrMDEzMSwgVSswMTUyLTAxNTMsIFUrMDJCQi0wMkJDLCBVKzAyQzYsIFUrMDJEQSwgVSswMkRDLCBVKzIwMDAtMjA2RiwgVSsyMDc0LCBVKzIwQUMsIFUrMjEyMiwgVSsyMTkxLCBVKzIxOTMsIFUrMjIxMiwgVSsyMjE1LCBVK0ZFRkYsIFUrRkZGRDsKfQo=")</style></defs><g><path d="M 0 80 L 1100 80 L 1100 600 L 0 600 Z" fill="none" stroke="#aab7b8" stroke-miterlimit="10" pointer-events="all"/><path d="M 10.73 86.89 C 8.19 86.86 6.05 89.34 6.28 91.84 C 4.63 92.3 3.58 94.09 3.93 95.76 C 4.17 97.45 5.84 98.8 7.55 98.58 C 11.3 98.56 15.04 98.61 18.79 98.55 C 20.71 98.38 22.05 96.29 21.58 94.45 C 21.34 93.13 20.21 91.98 18.87 91.81 C 18.86 90.3 17.26 88.82 15.79 89.6 C 14.97 90.39 14.82 88.44 14.02 88.13 C 13.14 87.28 11.95 86.82 10.73 86.89 Z M 10.75 87.63 C 12.68 87.51 14.32 89.05 14.91 90.79 C 15.31 91.19 15.67 90.52 15.97 90.34 C 17.25 89.57 18.21 91.17 18.23 92.29 C 18.58 92.77 19.39 92.38 19.77 92.91 C 21.21 93.93 21.3 96.3 19.88 97.37 C 18.9 98.09 17.63 97.75 16.5 97.83 C 13.28 97.82 10.06 97.84 6.84 97.82 C 5.2 97.58 4.19 95.69 4.79 94.17 C 5.07 93.16 6.05 92.67 6.94 92.36 C 7.19 91.62 6.85 90.71 7.33 89.99 C 7.92 88.65 9.25 87.61 10.75 87.63 Z M 0 105 C 0 96.67 0 88.33 0 80 C 8.33 80 16.67 80 25 80 C 25 88.33 25 96.67 25 105 C 16.67 105 8.33 105 0 105 Z" fill="#aab7b8" stroke="none" pointer-events="all"/><g fill="#AAB7B8" font-family="Rubik" font-size="16px"><text x="31.5" y="101.5">shared account</text></g><path d="M 20 400 L 1080 400" fill="none" stroke="#5c5c5c" stroke-width="2" stroke-miterlimit="10" stroke-dasharray="6 6" pointer-events="stroke"/><rect x="470" y="420" width="160" height="40" fill="#5c5c5c" stroke="#5c5c5c" stroke-width="2" pointer-events="none"/><g fill="#ffffff" font-family="Rubik" pointer-events="none" text-anchor="middle" font-size="16px"><text x="549.5" y="446.5">Account Resources</text></g><rect x="470" y="500" width="160" height="40" fill="#333333" stroke="#5c5c5c" stroke-width="2" pointer-events="none"/><g fill="#F8E7F5" font-family="Rubik" font-style="italic" pointer-events="none" text-anchor="middle" font-size="14px"><text x="549.5" y="525">shared between envs</text></g><path d="M 470 540 L 510 540 L 510 580 L 470 580 Z" fill="url(#mx-gradient-945df2-1-5a30b5-1-s-0)" stroke="none" pointer-events="none"/><path d="M 501.91 561.36 L 498.77 560.1 L 498.77 571.46 C 499.69 571.37 500.43 571.07 500.95 570.54 C 501.92 569.56 501.91 568.11 501.91 568.1 Z M 497.63 571.47 L 497.63 560.1 L 494.5 561.36 L 494.5 568.09 C 494.51 568.21 494.64 571.14 497.63 571.47 Z M 503.04 568.09 C 503.05 568.15 503.08 569.99 501.77 571.33 C 500.92 572.2 499.72 572.64 498.2 572.64 C 494.46 572.64 493.4 569.67 493.36 568.1 L 493.36 560.97 C 493.36 560.74 493.51 560.53 493.72 560.44 L 497.99 558.73 C 498.13 558.68 498.28 558.68 498.42 558.73 L 502.69 560.44 C 502.9 560.53 503.04 560.74 503.04 560.97 Z M 504.75 566.97 L 504.75 559.36 L 498.2 556.74 L 491.65 559.36 L 491.65 566.95 C 491.65 567 491.58 570.5 493.67 572.65 C 494.77 573.78 496.29 574.35 498.2 574.35 C 500.13 574.35 501.66 573.78 502.76 572.64 C 504.85 570.48 504.76 567 504.75 566.97 Z M 503.58 573.43 C 502.26 574.8 500.45 575.49 498.2 575.49 C 495.97 575.49 494.17 574.8 492.84 573.43 C 490.42 570.93 490.51 567.09 490.52 566.93 L 490.52 558.98 C 490.52 558.74 490.66 558.53 490.87 558.45 L 497.99 555.6 C 498.13 555.55 498.28 555.55 498.42 555.6 L 505.53 558.45 C 505.75 558.53 505.89 558.74 505.89 558.98 L 505.89 566.95 C 505.9 567.09 506 570.92 503.58 573.43 Z M 480.3 564.67 L 488.81 564.67 L 488.81 565.81 L 480.3 565.81 C 476.83 565.81 474.19 563.5 474.01 560.32 C 474 560.19 474 560.04 474 559.89 C 474 555.98 476.74 554.54 478.33 554.03 C 478.32 553.85 478.31 553.66 478.31 553.48 C 478.31 550.37 480.53 547.12 483.47 545.92 C 486.91 544.51 490.55 545.19 493.19 547.75 C 494.08 548.61 494.76 549.54 495.25 550.56 C 495.93 549.97 496.76 549.65 497.65 549.65 C 499.53 549.65 501.52 551.13 501.87 553.96 C 503.11 554.27 504.67 554.94 505.77 556.35 L 504.87 557.05 C 503.86 555.75 502.33 555.2 501.22 554.98 C 500.97 554.93 500.78 554.71 500.77 554.45 C 500.62 551.94 499.05 550.79 497.65 550.79 C 496.82 550.79 496.08 551.18 495.52 551.93 C 495.39 552.09 495.19 552.18 494.98 552.14 C 494.77 552.11 494.6 551.97 494.53 551.78 C 494.09 550.59 493.39 549.54 492.4 548.56 C 490.09 546.33 486.91 545.74 483.9 546.97 C 481.36 548.01 479.45 550.81 479.45 553.48 C 479.45 553.79 479.47 554.09 479.51 554.38 C 479.54 554.67 479.36 554.93 479.08 555 C 477.61 555.37 475.14 556.49 475.14 559.89 C 475.14 560.01 475.14 560.12 475.15 560.24 C 475.29 562.82 477.46 564.67 480.3 564.67 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 550 540 L 590 540 L 590 580 L 550 580 Z" fill="url(#mx-gradient-945df2-1-5a30b5-1-s-0)" stroke="none" pointer-events="none"/><path d="M 564.39 571.89 L 574.38 571.89 L 574.38 568.6 C 574.38 568.31 574.07 568.07 573.69 568.07 L 565.08 568.07 C 564.7 568.07 564.39 568.31 564.39 568.6 Z M 577.36 573.76 L 577.36 575.82 L 577.36 576 L 576.24 576 L 576.24 575.82 L 576.24 573.76 C 576.24 573.32 575.98 573.01 575.75 573.01 L 563.02 573.01 C 562.79 573.01 562.53 573.32 562.53 573.76 L 562.53 575.82 L 562.53 576 L 561.41 576 L 561.41 575.82 L 561.41 573.76 C 561.41 572.73 562.13 571.89 563.02 571.89 L 563.27 571.89 L 563.27 568.6 C 563.27 567.69 564.08 566.95 565.08 566.95 L 573.69 566.95 C 574.69 566.95 575.5 567.69 575.5 568.6 L 575.5 571.89 L 575.75 571.89 C 576.64 571.89 577.36 572.73 577.36 573.76 Z M 573.09 559.54 C 573.8 559.54 574.38 558.96 574.38 558.25 C 574.38 557.53 573.8 556.95 573.09 556.95 C 572.38 556.95 571.8 557.53 571.8 558.25 C 571.8 558.96 572.38 559.54 573.09 559.54 Z M 572.53 566.28 L 572.53 560.59 C 571.47 560.33 570.68 559.38 570.68 558.25 C 570.68 556.92 571.76 555.83 573.09 555.83 C 574.42 555.83 575.5 556.92 575.5 558.25 C 575.5 559.38 574.71 560.33 573.65 560.59 L 573.65 566.28 Z M 570.64 553.92 C 570.64 553.21 570.06 552.63 569.34 552.63 C 568.63 552.63 568.05 553.21 568.05 553.92 C 568.05 554.64 568.63 555.22 569.34 555.22 C 570.06 555.22 570.64 554.64 570.64 553.92 Z M 571.76 553.92 C 571.76 555.05 570.98 555.98 569.94 556.25 L 569.94 566.28 L 568.83 566.28 L 568.83 556.28 C 567.74 556.04 566.93 555.08 566.93 553.92 C 566.93 552.59 568.01 551.51 569.34 551.51 C 570.67 551.51 571.76 552.59 571.76 553.92 Z M 565.68 556.95 C 564.97 556.95 564.39 557.53 564.39 558.25 C 564.39 558.96 564.97 559.54 565.68 559.54 C 566.39 559.54 566.97 558.96 566.97 558.25 C 566.97 557.53 566.39 556.95 565.68 556.95 Z M 565.68 555.83 C 567.01 555.83 568.09 556.92 568.09 558.25 C 568.09 559.38 567.3 560.33 566.24 560.59 L 566.24 566.28 L 565.12 566.28 L 565.12 560.59 C 564.06 560.33 563.27 559.38 563.27 558.25 C 563.27 556.92 564.35 555.83 565.68 555.83 Z M 585.67 558.85 C 585.67 563.14 582.42 564.66 579.38 564.66 L 575 564.66 L 575 563.54 L 579.38 563.54 C 580.59 563.54 584.55 563.2 584.55 558.85 C 584.55 555.7 582.09 554.55 580.02 554.13 C 579.77 554.08 579.58 553.87 579.57 553.62 C 579.42 551.13 577.97 550.25 576.77 550.25 C 575.96 550.25 575.2 550.64 574.69 551.31 C 574.56 551.47 574.36 551.55 574.16 551.52 C 573.95 551.49 573.78 551.36 573.71 551.16 C 573.36 550.2 572.73 548.85 571.74 547.9 C 569.57 545.78 566.6 545.21 563.79 546.36 C 561.5 547.3 559.63 550.17 559.63 552.76 C 559.63 553.04 559.65 553.33 559.68 553.61 C 559.72 553.89 559.54 554.15 559.26 554.22 C 558.11 554.5 555.45 555.51 555.45 558.81 C 555.45 558.92 555.45 559.04 555.46 559.15 C 555.59 561.57 557.87 563.54 560.53 563.54 L 563.75 563.54 L 563.75 564.66 L 560.53 564.66 C 557.29 564.66 554.51 562.22 554.34 559.22 C 554.33 559.08 554.33 558.94 554.33 558.81 C 554.33 556.12 555.89 554.08 558.53 553.26 C 558.52 553.1 558.51 552.93 558.51 552.76 C 558.51 550.08 560.33 546.57 563.36 545.33 C 566.6 544 570.02 544.66 572.52 547.09 C 573.4 547.94 574.02 549.02 574.44 549.97 C 575.1 549.43 575.91 549.13 576.77 549.13 C 578.5 549.13 580.32 550.37 580.65 553.13 C 583.89 553.9 585.67 555.93 585.67 558.85 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 510 540 L 550 540 L 550 580 L 510 580 Z" fill="url(#mx-gradient-945df2-1-5a30b5-1-s-0)" stroke="none" pointer-events="none"/><path d="M 534.96 560.42 C 535.38 560.81 535.59 561.33 535.59 561.99 C 535.59 562.7 535.33 563.27 534.82 563.7 C 534.31 564.12 533.62 564.34 532.75 564.34 C 532.07 564.34 531.39 564.19 530.72 563.9 L 530.72 563.03 C 531.51 563.29 532.19 563.42 532.75 563.42 C 533.3 563.42 533.73 563.29 534.03 563.05 C 534.33 562.8 534.48 562.45 534.48 561.99 C 534.48 561.11 533.92 560.67 532.81 560.67 C 532.46 560.67 532.11 560.69 531.77 560.72 L 531.77 560 L 534.06 557.5 L 530.83 557.5 L 530.83 556.61 L 535.27 556.61 L 535.27 557.47 L 533.02 559.85 C 533.06 559.84 533.1 559.84 533.13 559.84 L 533.24 559.84 C 533.96 559.84 534.53 560.03 534.96 560.42 M 528.62 560.23 C 529.06 560.65 529.28 561.22 529.28 561.94 C 529.28 562.66 529.02 563.24 528.51 563.68 C 527.99 564.12 527.31 564.34 526.47 564.34 C 525.73 564.34 525.03 564.19 524.38 563.9 L 524.38 563.03 C 525.19 563.29 525.88 563.42 526.46 563.42 C 527.01 563.42 527.43 563.29 527.73 563.04 C 528.02 562.79 528.17 562.43 528.17 561.96 C 528.17 561.44 528.03 561.06 527.75 560.83 C 527.48 560.6 527.03 560.48 526.4 560.48 C 525.95 560.48 525.39 560.52 524.71 560.59 L 524.71 559.87 L 524.92 556.61 L 528.9 556.61 L 528.9 557.5 L 525.83 557.5 L 525.69 559.72 C 526.09 559.65 526.45 559.61 526.77 559.61 C 527.56 559.61 528.17 559.82 528.62 560.23 M 536.82 568.23 C 534.05 568.73 531.63 569.86 530 570.78 C 528.37 569.86 525.95 568.73 523.18 568.23 C 522.4 568.09 518.52 567.28 518.52 565.04 C 518.52 564 518.89 563.31 519.61 562.08 C 520.46 560.6 521.53 558.77 521.53 556.13 C 521.53 554.25 521.03 552.44 520.06 550.75 C 520.17 550.61 520.29 550.47 520.4 550.32 C 521.85 551.04 523.36 551.41 524.89 551.41 C 526.76 551.41 528.47 550.92 530 549.95 C 531.52 550.92 533.24 551.41 535.11 551.41 C 536.64 551.41 538.15 551.04 539.6 550.32 C 539.71 550.47 539.83 550.61 539.94 550.75 C 538.97 552.44 538.47 554.25 538.47 556.13 C 538.47 558.77 539.54 560.6 540.39 562.08 C 541.11 563.31 541.48 564 541.48 565.04 C 541.48 567.28 537.6 568.09 536.82 568.23 M 539.61 556.13 C 539.61 554.33 540.12 552.61 541.12 551 C 541.25 550.8 541.24 550.53 541.08 550.34 C 540.79 549.99 540.49 549.61 540.19 549.24 C 540.01 549.02 539.71 548.97 539.47 549.1 C 538.06 549.88 536.6 550.27 535.11 550.27 C 533.32 550.27 531.75 549.79 530.32 548.8 C 530.13 548.66 529.87 548.66 529.68 548.8 C 528.25 549.79 526.68 550.27 524.89 550.27 C 523.4 550.27 521.94 549.88 520.53 549.1 C 520.29 548.97 519.99 549.02 519.81 549.24 C 519.51 549.61 519.21 549.99 518.92 550.34 C 518.76 550.53 518.75 550.8 518.88 551 C 519.88 552.61 520.39 554.33 520.39 556.13 C 520.39 558.47 519.41 560.15 518.62 561.51 C 517.85 562.83 517.38 563.71 517.38 565.04 C 517.38 568.11 521.67 569.12 522.98 569.36 C 525.75 569.85 528.17 571.03 529.71 571.93 C 529.8 571.98 529.9 572 530 572 C 530.1 572 530.2 571.98 530.29 571.93 C 531.83 571.03 534.25 569.85 537.02 569.36 C 538.33 569.12 542.62 568.11 542.62 565.04 C 542.62 563.71 542.15 562.83 541.38 561.51 C 540.59 560.15 539.61 558.47 539.61 556.13 M 537.41 571.53 C 533.91 572.16 530.98 574.04 530 574.73 C 529.02 574.04 526.09 572.16 522.59 571.53 C 515.71 570.29 515.18 566.25 515.18 565.04 C 515.18 563.05 515.96 561.7 516.71 560.4 C 517.43 559.16 518.18 557.87 518.18 556.13 C 518.18 553.38 516.59 551.44 515.81 550.65 C 516.63 549.65 518.71 547.12 519.74 545.79 C 521.29 547.26 523.1 548.06 524.89 548.06 C 526.87 548.06 528.51 547.25 530 545.53 C 531.49 547.25 533.13 548.06 535.11 548.06 C 536.9 548.06 538.71 547.26 540.26 545.79 C 541.29 547.12 543.37 549.65 544.19 550.65 C 543.41 551.44 541.82 553.38 541.82 556.13 C 541.82 557.87 542.57 559.16 543.29 560.4 C 544.04 561.7 544.82 563.05 544.82 565.04 C 544.82 566.25 544.29 570.29 537.41 571.53 M 544.27 559.83 C 543.57 558.61 542.96 557.56 542.96 556.13 C 542.96 553.12 545.31 551.17 545.33 551.15 C 545.45 551.05 545.52 550.91 545.54 550.76 C 545.55 550.61 545.51 550.46 545.41 550.34 C 545.37 550.3 541.64 545.77 540.78 544.59 C 540.68 544.45 540.52 544.37 540.35 544.36 C 540.18 544.35 540.02 544.41 539.9 544.54 C 538.47 546.07 536.77 546.92 535.11 546.92 C 533.29 546.92 531.85 546.11 530.45 544.28 C 530.24 544 529.76 544 529.55 544.28 C 528.15 546.11 526.71 546.92 524.89 546.92 C 523.23 546.92 521.53 546.07 520.1 544.54 C 519.98 544.41 519.82 544.34 519.65 544.36 C 519.48 544.37 519.32 544.45 519.22 544.59 C 518.36 545.77 514.63 550.3 514.59 550.34 C 514.49 550.46 514.45 550.61 514.46 550.76 C 514.48 550.91 514.55 551.05 514.67 551.15 C 514.69 551.17 517.04 553.12 517.04 556.13 C 517.04 557.56 516.43 558.61 515.73 559.83 C 514.93 561.19 514.04 562.74 514.04 565.04 C 514.04 568.87 517.16 571.71 522.39 572.65 C 526.33 573.36 529.62 575.86 529.65 575.88 C 529.75 575.96 529.88 576 530 576 C 530.12 576 530.24 575.96 530.35 575.88 C 530.38 575.86 533.66 573.36 537.61 572.65 C 542.84 571.71 545.96 568.87 545.96 565.04 C 545.96 562.74 545.07 561.19 544.27 559.83" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 590 540 L 630 540 L 630 580 L 590 580 Z" fill="url(#mx-gradient-f34482-1-bc1356-1-s-0)" stroke="none" pointer-events="none"/><path d="M 608.6 550.18 L 610.84 550.18 L 610.84 549.05 L 608.6 549.05 Z M 604.67 550.18 L 606.91 550.18 L 606.91 549.05 L 604.67 549.05 Z M 600.74 550.18 L 602.98 550.18 L 602.98 549.05 L 600.74 549.05 Z M 624.15 566.09 C 623.98 566.49 623.62 566.79 623.19 566.93 L 623.19 563.76 C 623.53 563.88 623.83 564.1 624.04 564.41 C 624.36 564.9 624.4 565.51 624.15 566.09 Z M 595.85 566.09 C 595.6 565.51 595.64 564.9 595.96 564.41 C 596.17 564.1 596.47 563.88 596.81 563.76 L 596.81 566.93 C 596.38 566.79 596.02 566.49 595.85 566.09 Z M 624.98 563.79 C 624.56 563.16 623.92 562.74 623.19 562.59 L 623.19 561.59 C 623.19 559.63 621.68 558.04 619.82 558.04 L 609.16 558.04 L 609.16 559.16 L 619.82 559.16 C 621.06 559.16 622.07 560.25 622.07 561.59 L 622.07 569.08 C 622.07 570.42 621.06 571.51 619.82 571.51 L 600.18 571.51 C 598.94 571.51 597.93 570.42 597.93 569.08 L 597.93 561.59 C 597.93 560.25 598.94 559.16 600.18 559.16 L 602.98 559.16 L 602.98 558.04 L 600.18 558.04 C 598.32 558.04 596.81 559.63 596.81 561.59 L 596.81 562.59 C 596.08 562.74 595.44 563.16 595.02 563.79 C 594.49 564.6 594.41 565.6 594.82 566.54 C 595.17 567.35 595.92 567.92 596.81 568.09 L 596.81 569.08 C 596.81 571.04 598.32 572.63 600.18 572.63 L 606.91 572.63 L 606.91 576 L 608.04 576 L 608.04 572.63 L 611.4 572.63 L 611.4 576 L 612.53 576 L 612.53 572.63 L 619.82 572.63 C 621.68 572.63 623.19 571.04 623.19 569.08 L 623.19 568.09 C 624.08 567.92 624.83 567.35 625.18 566.54 C 625.59 565.6 625.51 564.6 624.98 563.79 Z M 605.23 565.33 C 605.23 566.26 604.47 567.02 603.54 567.02 C 602.62 567.02 601.86 566.26 601.86 565.33 C 601.86 564.4 602.62 563.65 603.54 563.65 C 604.47 563.65 605.23 564.4 605.23 565.33 Z M 600.74 565.33 C 600.74 566.88 602 568.14 603.54 568.14 C 605.09 568.14 606.35 566.88 606.35 565.33 C 606.35 563.79 605.09 562.53 603.54 562.53 C 602 562.53 600.74 563.79 600.74 565.33 Z M 614.77 565.33 C 614.77 564.4 615.53 563.65 616.46 563.65 C 617.38 563.65 618.14 564.4 618.14 565.33 C 618.14 566.26 617.38 567.02 616.46 567.02 C 615.53 567.02 614.77 566.26 614.77 565.33 Z M 619.26 565.33 C 619.26 563.79 618 562.53 616.46 562.53 C 614.91 562.53 613.65 563.79 613.65 565.33 C 613.65 566.88 614.91 568.14 616.46 568.14 C 618 568.14 619.26 566.88 619.26 565.33 Z M 598.49 545.6 C 598.49 545.34 598.71 545.12 598.97 545.12 L 613.09 545.12 L 613.09 554.17 C 613.09 554.44 612.86 554.67 612.59 554.67 L 606.91 554.67 C 606.6 554.67 606.35 554.92 606.35 555.23 L 606.35 558.14 L 603.87 554.89 C 603.76 554.75 603.6 554.67 603.42 554.67 L 598.97 554.67 C 598.71 554.67 598.49 554.45 598.49 554.19 Z M 598.97 555.79 L 603.15 555.79 L 606.47 560.14 C 606.57 560.28 606.74 560.36 606.91 560.36 C 606.97 560.36 607.03 560.35 607.09 560.33 C 607.32 560.26 607.47 560.04 607.47 559.8 L 607.47 555.79 L 612.59 555.79 C 613.48 555.79 614.21 555.06 614.21 554.17 L 614.21 544.86 C 614.21 544.38 613.83 544 613.35 544 L 598.97 544 C 598.09 544 597.37 544.72 597.37 545.6 L 597.37 554.19 C 597.37 555.07 598.09 555.79 598.97 555.79 Z" fill="#ffffff" stroke="none" pointer-events="none"/><rect x="470" y="540" width="160" height="40" fill="none" stroke="#5c5c5c" stroke-width="2" pointer-events="none"/><rect x="470" y="460" width="160" height="40" fill="#333333" stroke="#5c5c5c" stroke-width="2" pointer-events="none"/><g fill="#F8E7F5" font-family="Rubik" font-style="italic" pointer-events="none" text-anchor="middle" font-size="14px"><text x="549.5" y="485">own deploy lifecycle</text></g><rect x="200" y="140" width="160" height="40" fill="#6a00ff" stroke="#6a00ff" stroke-width="2" pointer-events="none"/><g fill="#ffffff" font-family="Rubik" pointer-events="none" text-anchor="middle" font-size="22px"><text x="279.5" y="173.5">feature</text></g><rect x="200" y="180" width="160" height="40" fill="#6a00ff" stroke="#6a00ff" stroke-width="2" pointer-events="none"/><g fill="#ffffff" font-family="Rubik" pointer-events="none" text-anchor="middle" font-size="16px" opacity="0.5"><text x="279.5" y="198.5">environment(s)</text></g><rect x="200" y="260" width="160" height="40" fill="#1c0042" stroke="#6a00ff" stroke-width="2" pointer-events="none"/><g fill="#FFFFFF" font-family="Rubik" font-style="italic" pointer-events="none" text-anchor="middle" font-size="16px"><text x="279.5" y="286">short-lived</text></g><rect x="200" y="220" width="160" height="40" fill="#1c0042" stroke="#6a00ff" stroke-width="2" pointer-events="none"/><g fill="#FFFFFF" font-family="Rubik" font-style="italic" pointer-events="none" text-anchor="middle" font-size="16px" opacity="0.5"><text x="279.5" y="246">OPTIONAL</text></g><path d="M 200 300 L 240 300 L 240 340 L 200 340 Z" fill="url(#mx-gradient-f78e04-1-d05c17-1-s-0)" stroke="none" pointer-events="none"/><path d="M 213.16 334.86 L 206.07 334.86 L 213.91 318.45 L 217.47 325.77 Z M 214.43 316.89 C 214.33 316.69 214.13 316.57 213.91 316.57 L 213.91 316.57 C 213.69 316.57 213.49 316.69 213.39 316.89 L 204.64 335.18 C 204.56 335.36 204.57 335.57 204.67 335.73 C 204.78 335.9 204.96 336 205.16 336 L 213.52 336 C 213.75 336 213.95 335.87 214.04 335.67 L 218.62 326.02 C 218.7 325.86 218.7 325.68 218.62 325.52 Z M 234.3 334.86 L 227.25 334.86 L 215.94 311.18 C 215.84 310.98 215.64 310.86 215.42 310.86 L 210.81 310.86 L 210.81 305.14 L 219.85 305.14 L 231.11 328.82 C 231.21 329.02 231.41 329.14 231.63 329.14 L 234.3 329.14 Z M 234.87 328 L 231.99 328 L 220.73 304.33 C 220.64 304.13 220.44 304 220.22 304 L 210.24 304 C 209.93 304 209.67 304.26 209.67 304.57 L 209.66 311.43 C 209.66 311.58 209.72 311.73 209.83 311.83 C 209.94 311.94 210.08 312 210.24 312 L 215.06 312 L 226.37 335.67 C 226.47 335.87 226.67 336 226.89 336 L 234.87 336 C 235.19 336 235.44 335.74 235.44 335.43 L 235.44 328.57 C 235.44 328.26 235.19 328 234.87 328 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 280 300 L 320 300 L 320 340 L 280 340 Z" fill="url(#mx-gradient-945df2-1-5a30b5-1-s-0)" stroke="none" pointer-events="none"/><path d="M 296.61 328.94 L 298.29 328.94 L 298.29 327.79 L 296.61 327.79 Z M 299.43 328.94 L 301.14 328.94 L 301.14 327.79 L 299.43 327.79 Z M 292.58 305.53 L 285.16 309.21 L 285.16 332.11 L 292.58 334.62 Z M 293.72 312.82 L 293.72 327.79 L 295.43 327.79 L 295.43 328.94 L 293.72 328.94 L 293.72 335.42 C 293.72 335.61 293.63 335.78 293.48 335.89 C 293.38 335.96 293.27 336 293.15 336 C 293.09 336 293.03 335.99 292.97 335.97 L 284.4 333.07 C 284.17 333 284.01 332.78 284.01 332.53 L 284.01 308.86 C 284.01 308.64 284.14 308.44 284.33 308.34 L 292.9 304.09 C 293.07 304 293.28 304.01 293.45 304.12 C 293.62 304.22 293.72 304.41 293.72 304.6 L 293.72 311.67 L 295.43 311.67 L 295.43 312.82 Z M 302.28 328.94 L 304 328.94 L 304 327.79 L 302.28 327.79 Z M 302.32 312.82 L 304 312.82 L 304 311.67 L 302.32 311.67 Z M 299.47 312.82 L 301.14 312.82 L 301.14 311.67 L 299.47 311.67 Z M 296.61 312.82 L 298.29 312.82 L 298.29 311.67 L 296.61 311.67 Z M 314.84 309.21 L 307.42 305.53 L 307.42 334.62 L 314.84 332.11 Z M 315.99 332.53 C 315.99 332.78 315.83 333 315.6 333.07 L 307.03 335.97 C 306.97 335.99 306.91 336 306.85 336 C 306.73 336 306.62 335.96 306.52 335.89 C 306.37 335.78 306.28 335.61 306.28 335.42 L 306.28 328.94 L 305.18 328.94 L 305.18 327.79 L 306.28 327.79 L 306.28 312.82 L 305.18 312.82 L 305.18 311.67 L 306.28 311.67 L 306.28 304.6 C 306.28 304.41 306.38 304.22 306.55 304.12 C 306.72 304.01 306.93 304 307.1 304.09 L 315.67 308.34 C 315.86 308.44 315.99 308.64 315.99 308.86 Z M 301.68 316.48 L 300.61 316.07 L 297.75 323.55 L 298.82 323.96 Z M 305.54 320.13 C 305.77 319.91 305.77 319.54 305.54 319.32 L 303.26 317.02 L 302.45 317.83 L 304.33 319.73 L 302.45 321.62 L 303.26 322.44 Z M 296.74 322.44 L 294.46 320.13 C 294.23 319.91 294.23 319.54 294.46 319.32 L 296.74 317.02 L 297.55 317.83 L 295.67 319.73 L 297.55 321.62 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 240 300 L 280 300 L 280 340 L 240 340 Z" fill="url(#mx-gradient-ff4f8b-1-bc1356-1-s-0)" stroke="none" pointer-events="none"/><path d="M 267.8 334.86 C 266.58 334.86 265.58 333.86 265.58 332.62 C 265.58 331.39 266.58 330.39 267.8 330.39 C 269.03 330.39 270.02 331.39 270.02 332.62 C 270.02 333.86 269.03 334.86 267.8 334.86 Z M 262.93 325.14 L 257.03 325.14 L 254.07 320 L 257.03 314.86 L 262.93 314.86 L 265.89 320 Z M 252.93 309.61 C 251.7 309.61 250.7 308.61 250.7 307.38 C 250.7 306.14 251.7 305.14 252.93 305.14 C 254.15 305.14 255.15 306.14 255.15 307.38 C 255.15 308.61 254.15 309.61 252.93 309.61 Z M 267.8 329.25 C 267.38 329.25 266.98 329.33 266.61 329.47 L 264.19 325.38 L 264.07 325.45 L 267.03 320.29 C 267.14 320.11 267.14 319.89 267.03 319.71 L 263.75 314 C 263.65 313.82 263.46 313.71 263.26 313.71 L 257.29 313.71 L 257.31 313.7 L 255.1 309.95 C 255.82 309.33 256.28 308.4 256.28 307.38 C 256.28 305.51 254.78 304 252.93 304 C 251.08 304 249.57 305.51 249.57 307.38 C 249.57 309.24 251.08 310.75 252.93 310.75 C 253.35 310.75 253.75 310.67 254.12 310.53 L 256.19 314.03 L 252.93 319.71 C 252.82 319.89 252.82 320.11 252.93 320.29 L 256.21 326 C 256.31 326.18 256.5 326.29 256.7 326.29 L 263.26 326.29 C 263.31 326.29 263.35 326.28 263.4 326.27 L 265.63 330.05 C 264.91 330.67 264.45 331.6 264.45 332.62 C 264.45 334.49 265.95 336 267.8 336 C 269.66 336 271.16 334.49 271.16 332.62 C 271.16 330.76 269.66 329.25 267.8 329.25 Z M 271.19 315.49 C 269.97 315.49 268.97 314.49 268.97 313.25 C 268.97 312.02 269.97 311.02 271.19 311.02 C 272.42 311.02 273.41 312.02 273.41 313.25 C 273.41 314.49 272.42 315.49 271.19 315.49 Z M 275.35 319.71 L 273.2 315.96 C 274.02 315.34 274.55 314.36 274.55 313.25 C 274.55 311.39 273.04 309.88 271.19 309.88 C 270.72 309.88 270.27 309.98 269.86 310.15 L 268.1 307.09 C 268 306.91 267.82 306.81 267.61 306.81 L 260.57 306.81 L 260.57 307.95 L 267.28 307.95 L 268.91 310.78 C 268.25 311.4 267.83 312.28 267.83 313.25 C 267.83 315.12 269.34 316.63 271.19 316.63 C 271.54 316.63 271.87 316.58 272.18 316.48 L 274.2 320 L 271.37 324.94 L 272.35 325.51 L 275.35 320.29 C 275.45 320.11 275.45 319.89 275.35 319.71 Z M 249.27 328.71 C 248.05 328.71 247.05 327.71 247.05 326.48 C 247.05 325.25 248.05 324.25 249.27 324.25 C 250.5 324.25 251.5 325.25 251.5 326.48 C 251.5 327.71 250.5 328.71 249.27 328.71 Z M 251.13 329.29 C 252.03 328.68 252.63 327.65 252.63 326.48 C 252.63 324.62 251.12 323.1 249.27 323.1 C 248.74 323.1 248.23 323.23 247.78 323.46 L 245.8 320 L 249.09 314.27 L 248.1 313.7 L 244.65 319.71 C 244.55 319.89 244.55 320.11 244.65 320.29 L 246.86 324.14 C 246.28 324.75 245.92 325.57 245.92 326.48 C 245.92 328.34 247.42 329.86 249.27 329.86 C 249.55 329.86 249.82 329.82 250.08 329.75 L 251.9 332.91 C 252 333.09 252.18 333.19 252.39 333.19 L 259.43 333.19 L 259.43 332.05 L 252.72 332.05 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 240 340 L 280 340 L 280 380 L 240 380 Z" fill="url(#mx-gradient-60a337-1-277116-1-s-0)" stroke="none" pointer-events="none"/><path d="M 271.94 361.65 L 272.16 360.11 C 274.18 361.32 274.21 361.82 274.21 361.83 C 274.2 361.84 273.86 362.13 271.94 361.65 Z M 270.83 361.34 C 267.33 360.29 262.46 358.05 260.49 357.12 C 260.49 357.11 260.49 357.11 260.49 357.1 C 260.49 356.34 259.88 355.72 259.12 355.72 C 258.36 355.72 257.75 356.34 257.75 357.1 C 257.75 357.85 258.36 358.47 259.12 358.47 C 259.45 358.47 259.75 358.35 259.99 358.15 C 262.31 359.25 267.14 361.45 270.67 362.49 L 269.27 372.32 C 269.27 372.35 269.27 372.37 269.27 372.4 C 269.27 373.27 265.43 374.86 259.17 374.86 C 252.84 374.86 248.97 373.27 248.97 372.4 C 248.97 372.37 248.97 372.35 248.97 372.32 L 246.05 351.06 C 248.57 352.8 253.99 353.71 259.18 353.71 C 264.35 353.71 269.76 352.8 272.29 351.07 Z M 245.75 348.84 C 245.79 348.09 250.11 345.14 259.18 345.14 C 268.24 345.14 272.56 348.09 272.6 348.84 L 272.6 349.1 C 272.11 350.79 266.51 352.57 259.18 352.57 C 251.83 352.57 246.23 350.78 245.75 349.09 Z M 273.75 348.86 C 273.75 346.88 268.07 344 259.18 344 C 250.28 344 244.6 346.88 244.6 348.86 L 244.66 349.29 L 247.83 372.44 C 247.9 375.03 254.81 376 259.17 376 C 264.59 376 270.34 374.76 270.41 372.45 L 271.78 362.79 C 272.54 362.97 273.17 363.07 273.67 363.07 C 274.35 363.07 274.8 362.9 275.08 362.57 C 275.31 362.3 275.4 361.97 275.33 361.62 C 275.18 360.83 274.24 359.98 272.33 358.89 L 273.69 349.31 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 320 300 L 360 300 L 360 340 L 320 340 Z" fill="url(#mx-gradient-f78e04-1-d05c17-1-s-0)" stroke="none" pointer-events="none"/><path d="M 347.53 330.06 L 347.53 327.02 L 349.41 326.26 L 349.41 329.3 Z M 344.39 326.26 L 346.27 327.02 L 346.27 330.06 L 344.39 329.3 Z M 340.63 334.45 L 340.63 331.41 L 342.51 330.65 L 342.51 333.69 Z M 337.49 330.65 L 339.37 331.41 L 339.37 334.45 L 337.49 333.69 Z M 333.73 330.06 L 333.73 327.02 L 335.61 326.26 L 335.61 329.3 Z M 330.59 326.26 L 332.47 327.02 L 332.47 330.06 L 330.59 329.3 Z M 333.1 324.76 L 334.55 325.34 L 333.1 325.92 L 331.65 325.34 Z M 340 329.15 L 341.45 329.73 L 340 330.31 L 338.55 329.73 Z M 346.9 324.76 L 348.35 325.34 L 346.9 325.92 L 345.45 325.34 Z M 350.27 324.76 L 347.13 323.5 C 346.98 323.44 346.82 323.44 346.67 323.5 L 343.53 324.76 C 343.29 324.85 343.14 325.08 343.14 325.34 L 343.14 329.05 L 340.23 327.89 C 340.08 327.83 339.92 327.83 339.77 327.89 L 336.86 329.05 L 336.86 325.34 C 336.86 325.08 336.71 324.85 336.47 324.76 L 333.33 323.5 C 333.18 323.44 333.02 323.44 332.87 323.5 L 329.73 324.76 C 329.49 324.85 329.34 325.08 329.34 325.34 L 329.34 329.73 C 329.34 329.98 329.49 330.21 329.73 330.31 L 332.87 331.57 C 332.94 331.59 333.02 331.61 333.1 331.61 C 333.18 331.61 333.26 331.59 333.33 331.57 L 336.24 330.4 L 336.24 334.12 C 336.24 334.37 336.39 334.61 336.63 334.7 L 339.77 335.96 C 339.84 335.98 339.92 336 340 336 C 340.08 336 340.16 335.98 340.23 335.96 L 343.37 334.7 C 343.61 334.61 343.76 334.37 343.76 334.12 L 343.76 330.4 L 346.67 331.57 C 346.74 331.59 346.82 331.61 346.9 331.61 C 346.98 331.61 347.06 331.59 347.13 331.57 L 350.27 330.31 C 350.51 330.21 350.66 329.98 350.66 329.73 L 350.66 325.34 C 350.66 325.08 350.51 324.85 350.27 324.76 Z M 355.68 317.15 C 355.68 320.81 347.6 322.79 340 322.79 C 332.4 322.79 324.32 320.81 324.32 317.15 C 324.32 315.4 326.26 313.85 329.79 312.81 L 330.14 314.01 C 327.33 314.85 325.57 316.05 325.57 317.15 C 325.57 319.22 331.5 321.54 340 321.54 C 348.5 321.54 354.43 319.22 354.43 317.15 C 354.43 316.05 352.67 314.85 349.86 314.01 L 350.21 312.81 C 353.74 313.85 355.68 315.4 355.68 317.15 Z M 340 305.31 L 346.41 307.78 L 340 310.24 L 333.59 307.78 Z M 346.64 317.71 C 345.45 318.24 343.47 318.86 340.63 318.94 L 340.63 311.34 L 347.53 308.69 L 347.53 316.34 C 347.53 316.93 347.18 317.47 346.64 317.71 Z M 332.47 316.34 L 332.47 308.69 L 339.37 311.34 L 339.37 318.94 C 336.53 318.86 334.55 318.24 333.36 317.71 C 332.82 317.47 332.47 316.93 332.47 316.34 Z M 332.85 318.86 C 334.23 319.48 336.59 320.21 340 320.21 C 343.41 320.21 345.77 319.48 347.15 318.86 C 348.14 318.42 348.78 317.43 348.78 316.34 L 348.78 307.78 C 348.78 307.52 348.62 307.28 348.38 307.19 L 340.23 304.06 C 340.08 304 339.92 304 339.77 304.06 L 331.62 307.19 C 331.38 307.28 331.22 307.52 331.22 307.78 L 331.22 316.34 C 331.22 317.43 331.86 318.42 332.85 318.86 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 320 340 L 360 340 L 360 380 L 320 380 Z" fill="url(#mx-gradient-945df2-1-5a30b5-1-s-0)" stroke="none" pointer-events="none"/><path d="M 348.64 366.93 C 348.64 365.98 347.87 365.21 346.93 365.21 C 345.98 365.21 345.21 365.98 345.21 366.93 C 345.21 367.87 345.98 368.64 346.93 368.64 C 347.87 368.64 348.64 367.87 348.64 366.93 Z M 349.78 366.93 C 349.78 368.5 348.5 369.78 346.93 369.78 C 345.35 369.78 344.07 368.5 344.07 366.93 C 344.07 365.35 345.35 364.07 346.93 364.07 C 348.5 364.07 349.78 365.35 349.78 366.93 Z M 334.51 358.68 C 334.51 357.74 333.74 356.97 332.8 356.97 C 331.85 356.97 331.08 357.74 331.08 358.68 C 331.08 359.63 331.85 360.4 332.8 360.4 C 333.74 360.4 334.51 359.63 334.51 358.68 Z M 335.65 358.68 C 335.65 360.26 334.37 361.54 332.8 361.54 C 331.22 361.54 329.94 360.26 329.94 358.68 C 329.94 357.11 331.22 355.82 332.8 355.82 C 334.37 355.82 335.65 357.11 335.65 358.68 Z M 339.85 349.72 C 339.85 350.66 340.61 351.43 341.56 351.43 C 342.51 351.43 343.27 350.66 343.27 349.72 C 343.27 348.77 342.51 348 341.56 348 C 340.61 348 339.85 348.77 339.85 349.72 Z M 338.7 349.72 C 338.7 348.14 339.99 346.86 341.56 346.86 C 343.14 346.86 344.42 348.14 344.42 349.72 C 344.42 351.29 343.14 352.58 341.56 352.58 C 339.99 352.58 338.7 351.29 338.7 349.72 Z M 354.86 360 C 354.86 354.7 352.02 349.8 347.44 347.15 C 346.61 347.31 345.82 347.54 344.83 347.9 L 344.44 346.82 C 344.96 346.64 345.42 346.49 345.87 346.36 C 344.03 345.56 342.03 345.14 340 345.14 C 339.03 345.14 338.09 345.24 337.16 345.42 C 337.83 345.82 338.43 346.21 339 346.65 L 338.31 347.56 C 337.5 346.94 336.65 346.42 335.54 345.83 C 329.93 347.6 325.89 352.55 325.25 358.36 C 326.42 358.12 327.55 357.99 328.81 357.96 L 328.84 359.1 C 327.52 359.13 326.39 359.27 325.16 359.55 C 325.15 359.7 325.14 359.85 325.14 360 C 325.14 364.95 327.59 369.51 331.62 372.26 C 330.9 370.12 330.54 368.11 330.54 366.14 C 330.54 365.02 330.74 364.1 330.94 363.12 C 330.99 362.9 331.04 362.67 331.08 362.43 L 332.2 362.65 C 332.16 362.89 332.11 363.13 332.06 363.36 C 331.86 364.31 331.69 365.14 331.69 366.14 C 331.69 368.37 332.18 370.68 333.17 373.19 C 335.3 374.29 337.59 374.86 340 374.86 C 341.57 374.86 343.11 374.61 344.58 374.12 C 345.15 372.99 345.58 371.92 345.94 370.69 L 347.03 371 C 346.77 371.9 346.48 372.72 346.12 373.53 C 347.04 373.11 347.91 372.6 348.73 372 C 348.54 371.52 348.32 371.04 348.09 370.57 L 349.11 370.06 C 349.31 370.46 349.49 370.86 349.67 371.27 C 352.97 368.44 354.86 364.38 354.86 360 Z M 356 360 C 356 364.99 353.73 369.6 349.78 372.66 C 348.81 373.42 347.74 374.05 346.62 374.56 C 346.15 374.77 345.66 374.97 345.16 375.14 C 343.52 375.71 341.78 376 340 376 C 337.37 376 334.76 375.35 332.45 374.11 C 327.24 371.32 324 365.91 324 360 C 324 359.61 324.01 359.31 324.03 359.03 C 324.42 352.36 329 346.58 335.43 344.67 C 336.89 344.22 338.43 344 340 344 C 342.75 344 345.45 344.71 347.82 346.05 C 352.86 348.87 356 354.22 356 360 Z M 338.47 351.69 L 337.71 350.83 C 336.43 351.95 335.44 353.14 334.27 354.93 L 335.23 355.55 C 336.33 353.85 337.27 352.74 338.47 351.69 Z M 336.73 359.1 L 336.36 360.18 C 338.98 361.08 341.27 362.52 343.56 364.71 L 344.35 363.88 C 341.94 361.58 339.51 360.06 336.73 359.1 Z M 344.37 352.38 C 346.51 355.65 347.72 359.24 347.96 363.05 L 346.82 363.12 C 346.59 359.51 345.45 356.11 343.41 353.01 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 280 340 L 320 340 L 320 380 L 280 380 Z" fill="url(#mx-gradient-4d72f3-1-3334b9-1-s-0)" stroke="none" pointer-events="none"/><path d="M 285.95 345.14 L 291.26 350.45 L 290.45 351.26 L 285.14 345.95 L 285.14 350.29 L 284 350.29 L 284 344.57 C 284 344.26 284.26 344 284.57 344 L 290.29 344 L 290.29 345.14 Z M 316 344.57 L 316 350.29 L 314.86 350.29 L 314.86 345.95 L 309.55 351.26 L 308.74 350.45 L 314.05 345.14 L 309.71 345.14 L 309.71 344 L 315.43 344 C 315.74 344 316 344.26 316 344.57 Z M 314.86 369.71 L 316 369.71 L 316 375.43 C 316 375.74 315.74 376 315.43 376 L 309.71 376 L 309.71 374.86 L 314.05 374.86 L 308.74 369.55 L 309.55 368.74 L 314.86 374.05 Z M 314.57 359.55 C 314.57 357.65 312.38 355.78 308.71 354.54 L 309.08 353.46 C 313.3 354.88 315.71 357.1 315.71 359.55 C 315.71 362 313.3 364.22 309.08 365.65 L 308.71 364.56 C 312.38 363.32 314.57 361.45 314.57 359.55 Z M 285.46 359.55 C 285.46 361.37 287.51 363.19 290.94 364.43 L 290.56 365.51 C 286.59 364.07 284.32 361.9 284.32 359.55 C 284.32 357.2 286.59 355.03 290.56 353.6 L 290.94 354.67 C 287.51 355.91 285.46 357.73 285.46 359.55 Z M 291.26 369.55 L 285.95 374.86 L 290.29 374.86 L 290.29 376 L 284.57 376 C 284.26 376 284 375.74 284 375.43 L 284 369.71 L 285.14 369.71 L 285.14 374.05 L 290.45 368.74 Z M 300 355.02 C 295.92 355.02 293.71 353.97 293.71 353.53 C 293.71 353.1 295.92 352.05 300 352.05 C 304.08 352.05 306.29 353.1 306.29 353.53 C 306.29 353.97 304.08 355.02 300 355.02 Z M 300.02 359.45 C 296.11 359.45 293.71 358.38 293.71 357.8 L 293.71 355.02 C 295.12 355.8 297.62 356.16 300 356.16 C 302.38 356.16 304.88 355.8 306.29 355.02 L 306.29 357.8 C 306.29 358.38 303.91 359.45 300.02 359.45 Z M 300.02 363.81 C 296.11 363.81 293.71 362.74 293.71 362.16 L 293.71 359.35 C 295.1 360.17 297.57 360.59 300.02 360.59 C 302.45 360.59 304.9 360.17 306.29 359.35 L 306.29 362.16 C 306.29 362.74 303.91 363.81 300.02 363.81 Z M 300 367.72 C 295.93 367.72 293.71 366.63 293.71 366.07 L 293.71 363.71 C 295.1 364.53 297.57 364.95 300.02 364.95 C 302.45 364.95 304.9 364.53 306.29 363.72 L 306.29 366.07 C 306.29 366.63 304.07 367.72 300 367.72 Z M 300 350.91 C 296.42 350.91 292.57 351.73 292.57 353.53 L 292.57 366.07 C 292.57 367.91 296.31 368.87 300 368.87 C 303.69 368.87 307.43 367.91 307.43 366.07 L 307.43 353.53 C 307.43 351.73 303.58 350.91 300 350.91 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 200 340 L 240 340 L 240 380 L 200 380 Z" fill="url(#mx-gradient-4d72f3-1-3334b9-1-s-0)" stroke="none" pointer-events="none"/><path d="M 226.88 368.49 C 224.98 370.03 220.98 370.84 217.15 370.84 C 213.32 370.84 209.31 370.03 207.41 368.49 L 207.41 371.59 L 207.41 371.59 C 207.41 373.14 211.41 374.87 217.15 374.87 C 222.88 374.87 226.88 373.14 226.88 371.59 Z M 226.88 362.58 L 228.03 362.58 L 228.03 362.58 C 228.03 363.27 227.68 363.92 227.01 364.51 C 227.82 365.23 228.03 365.93 228.03 366.43 C 228.03 366.44 228.03 366.44 228.03 366.44 L 228.03 371.59 L 228.03 371.59 C 228.03 374.45 222.42 376 217.15 376 C 211.88 376 206.29 374.46 206.27 371.61 C 206.27 371.61 206.26 371.61 206.26 371.6 L 206.26 366.43 C 206.26 366.43 206.26 366.43 206.26 366.43 C 206.27 365.93 206.47 365.22 207.28 364.51 C 206.48 363.79 206.27 363.09 206.26 362.6 L 206.26 362.6 C 206.26 362.59 206.26 362.59 206.26 362.59 L 206.26 357.42 C 206.26 357.42 206.26 357.42 206.26 357.41 C 206.27 356.91 206.47 356.21 207.29 355.5 C 206.48 354.78 206.27 354.08 206.26 353.58 L 206.26 353.58 C 206.26 353.58 206.26 353.58 206.26 353.58 L 206.26 348.41 C 206.26 348.41 206.26 348.4 206.26 348.4 C 206.27 345.54 211.88 344 217.15 344 C 220.12 344 222.98 344.47 224.99 345.3 L 224.56 346.35 C 222.68 345.58 219.98 345.13 217.15 345.13 C 211.41 345.13 207.41 346.86 207.41 348.41 C 207.41 349.96 211.41 351.69 217.15 351.69 C 217.3 351.69 217.45 351.69 217.61 351.68 L 217.65 352.81 C 217.48 352.82 217.32 352.82 217.15 352.82 C 213.32 352.82 209.31 352 207.41 350.46 L 207.41 353.57 L 207.41 353.57 L 207.41 353.58 C 207.41 354.17 208.02 354.69 208.53 355.02 C 210.07 356 212.82 356.67 215.9 356.81 L 215.84 357.94 C 212.73 357.8 210.01 357.16 208.25 356.17 C 207.82 356.49 207.41 356.93 207.41 357.42 C 207.41 358.97 211.41 360.7 217.15 360.7 C 217.71 360.7 218.27 360.68 218.81 360.64 L 218.89 361.77 C 218.32 361.81 217.74 361.83 217.15 361.83 C 213.32 361.83 209.31 361.02 207.41 359.47 L 207.41 362.58 L 207.41 362.58 C 207.41 363.19 208.02 363.7 208.53 364.03 C 210.29 365.16 213.59 365.85 217.15 365.85 L 217.4 365.85 L 217.4 366.99 L 217.15 366.99 C 213.54 366.99 210.25 366.32 208.25 365.18 C 207.82 365.51 207.41 365.94 207.41 366.43 C 207.41 367.98 211.41 369.71 217.15 369.71 C 222.88 369.71 226.88 367.99 226.88 366.44 L 226.88 366.43 L 226.88 366.43 C 226.88 365.94 226.47 365.5 226.04 365.18 C 225.76 365.34 225.46 365.49 225.12 365.63 L 224.69 364.58 C 225.1 364.41 225.46 364.23 225.76 364.04 C 226.27 363.7 226.88 363.17 226.88 362.58 Z M 231.78 354.3 L 228.58 354.3 C 228.39 354.3 228.21 354.2 228.1 354.05 C 228 353.89 227.98 353.69 228.05 353.52 L 229.99 348.65 L 222.62 348.65 L 219.19 355.45 L 222.84 355.45 C 223.02 355.45 223.19 355.54 223.3 355.68 C 223.4 355.83 223.44 356.02 223.38 356.19 L 220.13 366.34 Z M 233.53 354.12 L 219.25 368.88 C 219.14 368.99 218.99 369.05 218.84 369.05 C 218.74 369.05 218.63 369.03 218.54 368.97 C 218.32 368.84 218.21 368.57 218.29 368.32 L 222.05 356.59 L 218.26 356.59 C 218.07 356.59 217.88 356.48 217.78 356.32 C 217.67 356.15 217.66 355.94 217.75 355.77 L 221.75 347.83 C 221.85 347.64 222.05 347.52 222.26 347.52 L 230.84 347.52 C 231.02 347.52 231.2 347.61 231.31 347.77 C 231.42 347.92 231.44 348.12 231.37 348.29 L 229.42 353.16 L 233.12 353.16 C 233.35 353.16 233.56 353.3 233.65 353.51 C 233.74 353.72 233.69 353.96 233.53 354.12 Z M 208.24 371.81 C 209.05 372.27 210.07 372.65 211.27 372.95 L 211.55 371.85 C 210.46 371.58 209.51 371.23 208.8 370.83 Z M 211.27 363.89 L 211.55 362.79 C 210.46 362.51 209.51 362.16 208.8 361.76 L 208.24 362.75 C 209.05 363.2 210.07 363.59 211.27 363.89 Z M 208.24 353.68 L 208.8 352.69 C 209.51 353.09 210.46 353.45 211.55 353.72 L 211.27 354.82 C 210.07 354.52 209.05 354.13 208.24 353.68 Z" fill="#ffffff" stroke="none" pointer-events="none"/><rect x="200" y="300" width="160" height="80" fill="none" stroke="#6a00ff" stroke-width="2" pointer-events="none"/><rect x="380" y="140" width="160" height="40" fill="#21c0a5" stroke="#21c0a5" stroke-width="2" pointer-events="none"/><g fill="#ffffff" font-family="Rubik" pointer-events="none" text-anchor="middle" font-size="22px"><text x="459.5" y="173.5">test</text></g><rect x="380" y="260" width="160" height="40" fill="#0b3d35" stroke="#21c0a5" stroke-width="2" pointer-events="none"/><g fill="#FFFFFF" font-family="Rubik" font-style="italic" pointer-events="none" text-anchor="middle" font-size="16px"><text x="459.5" y="286">for QA purposes</text></g><rect x="380" y="180" width="160" height="40" fill="#21c0a5" stroke="#21c0a5" stroke-width="2" pointer-events="none"/><g fill="#ffffff" font-family="Rubik" pointer-events="none" text-anchor="middle" font-size="16px" opacity="0.5"><text x="459.5" y="198.5">environment</text></g><rect x="380" y="220" width="160" height="40" fill="#0b3d35" stroke="#21c0a5" stroke-width="2" pointer-events="none"/><g fill="#FFFFFF" font-family="Rubik" font-style="italic" pointer-events="none" text-anchor="middle" font-size="16px" opacity="0.5"><text x="459.5" y="246">OPTIONAL</text></g><path d="M 380 300 L 420 300 L 420 340 L 380 340 Z" fill="url(#mx-gradient-f78e04-1-d05c17-1-s-0)" stroke="none" pointer-events="none"/><path d="M 393.16 334.86 L 386.07 334.86 L 393.91 318.45 L 397.47 325.77 Z M 394.43 316.89 C 394.33 316.69 394.13 316.57 393.91 316.57 L 393.91 316.57 C 393.69 316.57 393.49 316.69 393.39 316.89 L 384.64 335.18 C 384.56 335.36 384.57 335.57 384.67 335.73 C 384.78 335.9 384.96 336 385.16 336 L 393.52 336 C 393.75 336 393.95 335.87 394.04 335.67 L 398.62 326.02 C 398.7 325.86 398.7 325.68 398.62 325.52 Z M 414.3 334.86 L 407.25 334.86 L 395.94 311.18 C 395.84 310.98 395.64 310.86 395.42 310.86 L 390.81 310.86 L 390.81 305.14 L 399.85 305.14 L 411.11 328.82 C 411.21 329.02 411.41 329.14 411.63 329.14 L 414.3 329.14 Z M 414.87 328 L 411.99 328 L 400.73 304.33 C 400.64 304.13 400.44 304 400.22 304 L 390.24 304 C 389.93 304 389.67 304.26 389.67 304.57 L 389.66 311.43 C 389.66 311.58 389.72 311.73 389.83 311.83 C 389.94 311.94 390.08 312 390.24 312 L 395.06 312 L 406.37 335.67 C 406.47 335.87 406.67 336 406.89 336 L 414.87 336 C 415.19 336 415.44 335.74 415.44 335.43 L 415.44 328.57 C 415.44 328.26 415.19 328 414.87 328 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 460 300 L 500 300 L 500 340 L 460 340 Z" fill="url(#mx-gradient-945df2-1-5a30b5-1-s-0)" stroke="none" pointer-events="none"/><path d="M 476.61 328.94 L 478.29 328.94 L 478.29 327.79 L 476.61 327.79 Z M 479.43 328.94 L 481.14 328.94 L 481.14 327.79 L 479.43 327.79 Z M 472.58 305.53 L 465.16 309.21 L 465.16 332.11 L 472.58 334.62 Z M 473.72 312.82 L 473.72 327.79 L 475.43 327.79 L 475.43 328.94 L 473.72 328.94 L 473.72 335.42 C 473.72 335.61 473.63 335.78 473.48 335.89 C 473.38 335.96 473.27 336 473.15 336 C 473.09 336 473.03 335.99 472.97 335.97 L 464.4 333.07 C 464.17 333 464.01 332.78 464.01 332.53 L 464.01 308.86 C 464.01 308.64 464.14 308.44 464.33 308.34 L 472.9 304.09 C 473.07 304 473.28 304.01 473.45 304.12 C 473.62 304.22 473.72 304.41 473.72 304.6 L 473.72 311.67 L 475.43 311.67 L 475.43 312.82 Z M 482.28 328.94 L 484 328.94 L 484 327.79 L 482.28 327.79 Z M 482.32 312.82 L 484 312.82 L 484 311.67 L 482.32 311.67 Z M 479.47 312.82 L 481.14 312.82 L 481.14 311.67 L 479.47 311.67 Z M 476.61 312.82 L 478.29 312.82 L 478.29 311.67 L 476.61 311.67 Z M 494.84 309.21 L 487.42 305.53 L 487.42 334.62 L 494.84 332.11 Z M 495.99 332.53 C 495.99 332.78 495.83 333 495.6 333.07 L 487.03 335.97 C 486.97 335.99 486.91 336 486.85 336 C 486.73 336 486.62 335.96 486.52 335.89 C 486.37 335.78 486.28 335.61 486.28 335.42 L 486.28 328.94 L 485.18 328.94 L 485.18 327.79 L 486.28 327.79 L 486.28 312.82 L 485.18 312.82 L 485.18 311.67 L 486.28 311.67 L 486.28 304.6 C 486.28 304.41 486.38 304.22 486.55 304.12 C 486.72 304.01 486.93 304 487.1 304.09 L 495.67 308.34 C 495.86 308.44 495.99 308.64 495.99 308.86 Z M 481.68 316.48 L 480.61 316.07 L 477.75 323.55 L 478.82 323.96 Z M 485.54 320.13 C 485.77 319.91 485.77 319.54 485.54 319.32 L 483.26 317.02 L 482.45 317.83 L 484.33 319.73 L 482.45 321.62 L 483.26 322.44 Z M 476.74 322.44 L 474.46 320.13 C 474.23 319.91 474.23 319.54 474.46 319.32 L 476.74 317.02 L 477.55 317.83 L 475.67 319.73 L 477.55 321.62 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 420 300 L 460 300 L 460 340 L 420 340 Z" fill="url(#mx-gradient-ff4f8b-1-bc1356-1-s-0)" stroke="none" pointer-events="none"/><path d="M 447.8 334.86 C 446.58 334.86 445.58 333.86 445.58 332.62 C 445.58 331.39 446.58 330.39 447.8 330.39 C 449.03 330.39 450.02 331.39 450.02 332.62 C 450.02 333.86 449.03 334.86 447.8 334.86 Z M 442.93 325.14 L 437.03 325.14 L 434.07 320 L 437.03 314.86 L 442.93 314.86 L 445.89 320 Z M 432.93 309.61 C 431.7 309.61 430.7 308.61 430.7 307.38 C 430.7 306.14 431.7 305.14 432.93 305.14 C 434.15 305.14 435.15 306.14 435.15 307.38 C 435.15 308.61 434.15 309.61 432.93 309.61 Z M 447.8 329.25 C 447.38 329.25 446.98 329.33 446.61 329.47 L 444.19 325.38 L 444.07 325.45 L 447.03 320.29 C 447.14 320.11 447.14 319.89 447.03 319.71 L 443.75 314 C 443.65 313.82 443.46 313.71 443.26 313.71 L 437.29 313.71 L 437.31 313.7 L 435.1 309.95 C 435.82 309.33 436.28 308.4 436.28 307.38 C 436.28 305.51 434.78 304 432.93 304 C 431.08 304 429.57 305.51 429.57 307.38 C 429.57 309.24 431.08 310.75 432.93 310.75 C 433.35 310.75 433.75 310.67 434.12 310.53 L 436.19 314.03 L 432.93 319.71 C 432.82 319.89 432.82 320.11 432.93 320.29 L 436.21 326 C 436.31 326.18 436.5 326.29 436.7 326.29 L 443.26 326.29 C 443.31 326.29 443.35 326.28 443.4 326.27 L 445.63 330.05 C 444.91 330.67 444.45 331.6 444.45 332.62 C 444.45 334.49 445.95 336 447.8 336 C 449.66 336 451.16 334.49 451.16 332.62 C 451.16 330.76 449.66 329.25 447.8 329.25 Z M 451.19 315.49 C 449.97 315.49 448.97 314.49 448.97 313.25 C 448.97 312.02 449.97 311.02 451.19 311.02 C 452.42 311.02 453.41 312.02 453.41 313.25 C 453.41 314.49 452.42 315.49 451.19 315.49 Z M 455.35 319.71 L 453.2 315.96 C 454.02 315.34 454.55 314.36 454.55 313.25 C 454.55 311.39 453.04 309.88 451.19 309.88 C 450.72 309.88 450.27 309.98 449.86 310.15 L 448.1 307.09 C 448 306.91 447.82 306.81 447.61 306.81 L 440.57 306.81 L 440.57 307.95 L 447.28 307.95 L 448.91 310.78 C 448.25 311.4 447.83 312.28 447.83 313.25 C 447.83 315.12 449.34 316.63 451.19 316.63 C 451.54 316.63 451.87 316.58 452.18 316.48 L 454.2 320 L 451.37 324.94 L 452.35 325.51 L 455.35 320.29 C 455.45 320.11 455.45 319.89 455.35 319.71 Z M 429.27 328.71 C 428.05 328.71 427.05 327.71 427.05 326.48 C 427.05 325.25 428.05 324.25 429.27 324.25 C 430.5 324.25 431.5 325.25 431.5 326.48 C 431.5 327.71 430.5 328.71 429.27 328.71 Z M 431.13 329.29 C 432.03 328.68 432.63 327.65 432.63 326.48 C 432.63 324.62 431.12 323.1 429.27 323.1 C 428.74 323.1 428.23 323.23 427.78 323.46 L 425.8 320 L 429.09 314.27 L 428.1 313.7 L 424.65 319.71 C 424.55 319.89 424.55 320.11 424.65 320.29 L 426.86 324.14 C 426.28 324.75 425.92 325.57 425.92 326.48 C 425.92 328.34 427.42 329.86 429.27 329.86 C 429.55 329.86 429.82 329.82 430.08 329.75 L 431.9 332.91 C 432 333.09 432.18 333.19 432.39 333.19 L 439.43 333.19 L 439.43 332.05 L 432.72 332.05 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 420 340 L 460 340 L 460 380 L 420 380 Z" fill="url(#mx-gradient-60a337-1-277116-1-s-0)" stroke="none" pointer-events="none"/><path d="M 451.94 361.65 L 452.16 360.11 C 454.18 361.32 454.21 361.82 454.21 361.83 C 454.2 361.84 453.86 362.13 451.94 361.65 Z M 450.83 361.34 C 447.33 360.29 442.46 358.05 440.49 357.12 C 440.49 357.11 440.49 357.11 440.49 357.1 C 440.49 356.34 439.88 355.72 439.12 355.72 C 438.36 355.72 437.75 356.34 437.75 357.1 C 437.75 357.85 438.36 358.47 439.12 358.47 C 439.45 358.47 439.75 358.35 439.99 358.15 C 442.31 359.25 447.14 361.45 450.67 362.49 L 449.27 372.32 C 449.27 372.35 449.27 372.37 449.27 372.4 C 449.27 373.27 445.43 374.86 439.17 374.86 C 432.84 374.86 428.97 373.27 428.97 372.4 C 428.97 372.37 428.97 372.35 428.97 372.32 L 426.05 351.06 C 428.57 352.8 433.99 353.71 439.18 353.71 C 444.35 353.71 449.76 352.8 452.29 351.07 Z M 425.75 348.84 C 425.79 348.09 430.11 345.14 439.18 345.14 C 448.24 345.14 452.56 348.09 452.6 348.84 L 452.6 349.1 C 452.11 350.79 446.51 352.57 439.18 352.57 C 431.83 352.57 426.23 350.78 425.75 349.09 Z M 453.75 348.86 C 453.75 346.88 448.07 344 439.18 344 C 430.28 344 424.6 346.88 424.6 348.86 L 424.66 349.29 L 427.83 372.44 C 427.9 375.03 434.81 376 439.17 376 C 444.59 376 450.34 374.76 450.41 372.45 L 451.78 362.79 C 452.54 362.97 453.17 363.07 453.67 363.07 C 454.35 363.07 454.8 362.9 455.08 362.57 C 455.31 362.3 455.4 361.97 455.33 361.62 C 455.18 360.83 454.24 359.98 452.33 358.89 L 453.69 349.31 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 500 300 L 540 300 L 540 340 L 500 340 Z" fill="url(#mx-gradient-f78e04-1-d05c17-1-s-0)" stroke="none" pointer-events="none"/><path d="M 527.53 330.06 L 527.53 327.02 L 529.41 326.26 L 529.41 329.3 Z M 524.39 326.26 L 526.27 327.02 L 526.27 330.06 L 524.39 329.3 Z M 520.63 334.45 L 520.63 331.41 L 522.51 330.65 L 522.51 333.69 Z M 517.49 330.65 L 519.37 331.41 L 519.37 334.45 L 517.49 333.69 Z M 513.73 330.06 L 513.73 327.02 L 515.61 326.26 L 515.61 329.3 Z M 510.59 326.26 L 512.47 327.02 L 512.47 330.06 L 510.59 329.3 Z M 513.1 324.76 L 514.55 325.34 L 513.1 325.92 L 511.65 325.34 Z M 520 329.15 L 521.45 329.73 L 520 330.31 L 518.55 329.73 Z M 526.9 324.76 L 528.35 325.34 L 526.9 325.92 L 525.45 325.34 Z M 530.27 324.76 L 527.13 323.5 C 526.98 323.44 526.82 323.44 526.67 323.5 L 523.53 324.76 C 523.29 324.85 523.14 325.08 523.14 325.34 L 523.14 329.05 L 520.23 327.89 C 520.08 327.83 519.92 327.83 519.77 327.89 L 516.86 329.05 L 516.86 325.34 C 516.86 325.08 516.71 324.85 516.47 324.76 L 513.33 323.5 C 513.18 323.44 513.02 323.44 512.87 323.5 L 509.73 324.76 C 509.49 324.85 509.34 325.08 509.34 325.34 L 509.34 329.73 C 509.34 329.98 509.49 330.21 509.73 330.31 L 512.87 331.57 C 512.94 331.59 513.02 331.61 513.1 331.61 C 513.18 331.61 513.26 331.59 513.33 331.57 L 516.24 330.4 L 516.24 334.12 C 516.24 334.37 516.39 334.61 516.63 334.7 L 519.77 335.96 C 519.84 335.98 519.92 336 520 336 C 520.08 336 520.16 335.98 520.23 335.96 L 523.37 334.7 C 523.61 334.61 523.76 334.37 523.76 334.12 L 523.76 330.4 L 526.67 331.57 C 526.74 331.59 526.82 331.61 526.9 331.61 C 526.98 331.61 527.06 331.59 527.13 331.57 L 530.27 330.31 C 530.51 330.21 530.66 329.98 530.66 329.73 L 530.66 325.34 C 530.66 325.08 530.51 324.85 530.27 324.76 Z M 535.68 317.15 C 535.68 320.81 527.6 322.79 520 322.79 C 512.4 322.79 504.32 320.81 504.32 317.15 C 504.32 315.4 506.26 313.85 509.79 312.81 L 510.14 314.01 C 507.33 314.85 505.57 316.05 505.57 317.15 C 505.57 319.22 511.5 321.54 520 321.54 C 528.5 321.54 534.43 319.22 534.43 317.15 C 534.43 316.05 532.67 314.85 529.86 314.01 L 530.21 312.81 C 533.74 313.85 535.68 315.4 535.68 317.15 Z M 520 305.31 L 526.41 307.78 L 520 310.24 L 513.59 307.78 Z M 526.64 317.71 C 525.45 318.24 523.47 318.86 520.63 318.94 L 520.63 311.34 L 527.53 308.69 L 527.53 316.34 C 527.53 316.93 527.18 317.47 526.64 317.71 Z M 512.47 316.34 L 512.47 308.69 L 519.37 311.34 L 519.37 318.94 C 516.53 318.86 514.55 318.24 513.36 317.71 C 512.82 317.47 512.47 316.93 512.47 316.34 Z M 512.85 318.86 C 514.23 319.48 516.59 320.21 520 320.21 C 523.41 320.21 525.77 319.48 527.15 318.86 C 528.14 318.42 528.78 317.43 528.78 316.34 L 528.78 307.78 C 528.78 307.52 528.62 307.28 528.38 307.19 L 520.23 304.06 C 520.08 304 519.92 304 519.77 304.06 L 511.62 307.19 C 511.38 307.28 511.22 307.52 511.22 307.78 L 511.22 316.34 C 511.22 317.43 511.86 318.42 512.85 318.86 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 500 340 L 540 340 L 540 380 L 500 380 Z" fill="url(#mx-gradient-945df2-1-5a30b5-1-s-0)" stroke="none" pointer-events="none"/><path d="M 528.64 366.93 C 528.64 365.98 527.87 365.21 526.93 365.21 C 525.98 365.21 525.21 365.98 525.21 366.93 C 525.21 367.87 525.98 368.64 526.93 368.64 C 527.87 368.64 528.64 367.87 528.64 366.93 Z M 529.78 366.93 C 529.78 368.5 528.5 369.78 526.93 369.78 C 525.35 369.78 524.07 368.5 524.07 366.93 C 524.07 365.35 525.35 364.07 526.93 364.07 C 528.5 364.07 529.78 365.35 529.78 366.93 Z M 514.51 358.68 C 514.51 357.74 513.74 356.97 512.8 356.97 C 511.85 356.97 511.08 357.74 511.08 358.68 C 511.08 359.63 511.85 360.4 512.8 360.4 C 513.74 360.4 514.51 359.63 514.51 358.68 Z M 515.65 358.68 C 515.65 360.26 514.37 361.54 512.8 361.54 C 511.22 361.54 509.94 360.26 509.94 358.68 C 509.94 357.11 511.22 355.82 512.8 355.82 C 514.37 355.82 515.65 357.11 515.65 358.68 Z M 519.85 349.72 C 519.85 350.66 520.61 351.43 521.56 351.43 C 522.51 351.43 523.27 350.66 523.27 349.72 C 523.27 348.77 522.51 348 521.56 348 C 520.61 348 519.85 348.77 519.85 349.72 Z M 518.7 349.72 C 518.7 348.14 519.99 346.86 521.56 346.86 C 523.14 346.86 524.42 348.14 524.42 349.72 C 524.42 351.29 523.14 352.58 521.56 352.58 C 519.99 352.58 518.7 351.29 518.7 349.72 Z M 534.86 360 C 534.86 354.7 532.02 349.8 527.44 347.15 C 526.61 347.31 525.82 347.54 524.83 347.9 L 524.44 346.82 C 524.96 346.64 525.42 346.49 525.87 346.36 C 524.03 345.56 522.03 345.14 520 345.14 C 519.03 345.14 518.09 345.24 517.16 345.42 C 517.83 345.82 518.43 346.21 519 346.65 L 518.31 347.56 C 517.5 346.94 516.65 346.42 515.54 345.83 C 509.93 347.6 505.89 352.55 505.25 358.36 C 506.42 358.12 507.55 357.99 508.81 357.96 L 508.84 359.1 C 507.52 359.13 506.39 359.27 505.16 359.55 C 505.15 359.7 505.14 359.85 505.14 360 C 505.14 364.95 507.59 369.51 511.62 372.26 C 510.9 370.12 510.54 368.11 510.54 366.14 C 510.54 365.02 510.74 364.1 510.94 363.12 C 510.99 362.9 511.04 362.67 511.08 362.43 L 512.2 362.65 C 512.16 362.89 512.11 363.13 512.06 363.36 C 511.86 364.31 511.69 365.14 511.69 366.14 C 511.69 368.37 512.18 370.68 513.17 373.19 C 515.3 374.29 517.59 374.86 520 374.86 C 521.57 374.86 523.11 374.61 524.58 374.12 C 525.15 372.99 525.58 371.92 525.94 370.69 L 527.03 371 C 526.77 371.9 526.48 372.72 526.12 373.53 C 527.04 373.11 527.91 372.6 528.73 372 C 528.54 371.52 528.32 371.04 528.09 370.57 L 529.11 370.06 C 529.31 370.46 529.49 370.86 529.67 371.27 C 532.97 368.44 534.86 364.38 534.86 360 Z M 536 360 C 536 364.99 533.73 369.6 529.78 372.66 C 528.81 373.42 527.74 374.05 526.62 374.56 C 526.15 374.77 525.66 374.97 525.16 375.14 C 523.52 375.71 521.78 376 520 376 C 517.37 376 514.76 375.35 512.45 374.11 C 507.24 371.32 504 365.91 504 360 C 504 359.61 504.01 359.31 504.03 359.03 C 504.42 352.36 509 346.58 515.43 344.67 C 516.89 344.22 518.43 344 520 344 C 522.75 344 525.45 344.71 527.82 346.05 C 532.86 348.87 536 354.22 536 360 Z M 518.47 351.69 L 517.71 350.83 C 516.43 351.95 515.44 353.14 514.27 354.93 L 515.23 355.55 C 516.33 353.85 517.27 352.74 518.47 351.69 Z M 516.73 359.1 L 516.36 360.18 C 518.98 361.08 521.27 362.52 523.56 364.71 L 524.35 363.88 C 521.94 361.58 519.51 360.06 516.73 359.1 Z M 524.37 352.38 C 526.51 355.65 527.72 359.24 527.96 363.05 L 526.82 363.12 C 526.59 359.51 525.45 356.11 523.41 353.01 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 460 340 L 500 340 L 500 380 L 460 380 Z" fill="url(#mx-gradient-4d72f3-1-3334b9-1-s-0)" stroke="none" pointer-events="none"/><path d="M 465.95 345.14 L 471.26 350.45 L 470.45 351.26 L 465.14 345.95 L 465.14 350.29 L 464 350.29 L 464 344.57 C 464 344.26 464.26 344 464.57 344 L 470.29 344 L 470.29 345.14 Z M 496 344.57 L 496 350.29 L 494.86 350.29 L 494.86 345.95 L 489.55 351.26 L 488.74 350.45 L 494.05 345.14 L 489.71 345.14 L 489.71 344 L 495.43 344 C 495.74 344 496 344.26 496 344.57 Z M 494.86 369.71 L 496 369.71 L 496 375.43 C 496 375.74 495.74 376 495.43 376 L 489.71 376 L 489.71 374.86 L 494.05 374.86 L 488.74 369.55 L 489.55 368.74 L 494.86 374.05 Z M 494.57 359.55 C 494.57 357.65 492.38 355.78 488.71 354.54 L 489.08 353.46 C 493.3 354.88 495.71 357.1 495.71 359.55 C 495.71 362 493.3 364.22 489.08 365.65 L 488.71 364.56 C 492.38 363.32 494.57 361.45 494.57 359.55 Z M 465.46 359.55 C 465.46 361.37 467.51 363.19 470.94 364.43 L 470.56 365.51 C 466.59 364.07 464.32 361.9 464.32 359.55 C 464.32 357.2 466.59 355.03 470.56 353.6 L 470.94 354.67 C 467.51 355.91 465.46 357.73 465.46 359.55 Z M 471.26 369.55 L 465.95 374.86 L 470.29 374.86 L 470.29 376 L 464.57 376 C 464.26 376 464 375.74 464 375.43 L 464 369.71 L 465.14 369.71 L 465.14 374.05 L 470.45 368.74 Z M 480 355.02 C 475.92 355.02 473.71 353.97 473.71 353.53 C 473.71 353.1 475.92 352.05 480 352.05 C 484.08 352.05 486.29 353.1 486.29 353.53 C 486.29 353.97 484.08 355.02 480 355.02 Z M 480.02 359.45 C 476.11 359.45 473.71 358.38 473.71 357.8 L 473.71 355.02 C 475.12 355.8 477.62 356.16 480 356.16 C 482.38 356.16 484.88 355.8 486.29 355.02 L 486.29 357.8 C 486.29 358.38 483.91 359.45 480.02 359.45 Z M 480.02 363.81 C 476.11 363.81 473.71 362.74 473.71 362.16 L 473.71 359.35 C 475.1 360.17 477.57 360.59 480.02 360.59 C 482.45 360.59 484.9 360.17 486.29 359.35 L 486.29 362.16 C 486.29 362.74 483.91 363.81 480.02 363.81 Z M 480 367.72 C 475.93 367.72 473.71 366.63 473.71 366.07 L 473.71 363.71 C 475.1 364.53 477.57 364.95 480.02 364.95 C 482.45 364.95 484.9 364.53 486.29 363.72 L 486.29 366.07 C 486.29 366.63 484.07 367.72 480 367.72 Z M 480 350.91 C 476.42 350.91 472.57 351.73 472.57 353.53 L 472.57 366.07 C 472.57 367.91 476.31 368.87 480 368.87 C 483.69 368.87 487.43 367.91 487.43 366.07 L 487.43 353.53 C 487.43 351.73 483.58 350.91 480 350.91 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 380 340 L 420 340 L 420 380 L 380 380 Z" fill="url(#mx-gradient-4d72f3-1-3334b9-1-s-0)" stroke="none" pointer-events="none"/><path d="M 406.88 368.49 C 404.98 370.03 400.98 370.84 397.15 370.84 C 393.32 370.84 389.31 370.03 387.41 368.49 L 387.41 371.59 L 387.41 371.59 C 387.41 373.14 391.41 374.87 397.15 374.87 C 402.88 374.87 406.88 373.14 406.88 371.59 Z M 406.88 362.58 L 408.03 362.58 L 408.03 362.58 C 408.03 363.27 407.68 363.92 407.01 364.51 C 407.82 365.23 408.03 365.93 408.03 366.43 C 408.03 366.44 408.03 366.44 408.03 366.44 L 408.03 371.59 L 408.03 371.59 C 408.03 374.45 402.42 376 397.15 376 C 391.88 376 386.29 374.46 386.27 371.61 C 386.27 371.61 386.26 371.61 386.26 371.6 L 386.26 366.43 C 386.26 366.43 386.26 366.43 386.26 366.43 C 386.27 365.93 386.47 365.22 387.28 364.51 C 386.48 363.79 386.27 363.09 386.26 362.6 L 386.26 362.6 C 386.26 362.59 386.26 362.59 386.26 362.59 L 386.26 357.42 C 386.26 357.42 386.26 357.42 386.26 357.41 C 386.27 356.91 386.47 356.21 387.29 355.5 C 386.48 354.78 386.27 354.08 386.26 353.58 L 386.26 353.58 C 386.26 353.58 386.26 353.58 386.26 353.58 L 386.26 348.41 C 386.26 348.41 386.26 348.4 386.26 348.4 C 386.27 345.54 391.88 344 397.15 344 C 400.12 344 402.98 344.47 404.99 345.3 L 404.56 346.35 C 402.68 345.58 399.98 345.13 397.15 345.13 C 391.41 345.13 387.41 346.86 387.41 348.41 C 387.41 349.96 391.41 351.69 397.15 351.69 C 397.3 351.69 397.45 351.69 397.61 351.68 L 397.65 352.81 C 397.48 352.82 397.32 352.82 397.15 352.82 C 393.32 352.82 389.31 352 387.41 350.46 L 387.41 353.57 L 387.41 353.57 L 387.41 353.58 C 387.41 354.17 388.02 354.69 388.53 355.02 C 390.07 356 392.82 356.67 395.9 356.81 L 395.84 357.94 C 392.73 357.8 390.01 357.16 388.25 356.17 C 387.82 356.49 387.41 356.93 387.41 357.42 C 387.41 358.97 391.41 360.7 397.15 360.7 C 397.71 360.7 398.27 360.68 398.81 360.64 L 398.89 361.77 C 398.32 361.81 397.74 361.83 397.15 361.83 C 393.32 361.83 389.31 361.02 387.41 359.47 L 387.41 362.58 L 387.41 362.58 C 387.41 363.19 388.02 363.7 388.53 364.03 C 390.29 365.16 393.59 365.85 397.15 365.85 L 397.4 365.85 L 397.4 366.99 L 397.15 366.99 C 393.54 366.99 390.25 366.32 388.25 365.18 C 387.82 365.51 387.41 365.94 387.41 366.43 C 387.41 367.98 391.41 369.71 397.15 369.71 C 402.88 369.71 406.88 367.99 406.88 366.44 L 406.88 366.43 L 406.88 366.43 C 406.88 365.94 406.47 365.5 406.04 365.18 C 405.76 365.34 405.46 365.49 405.12 365.63 L 404.69 364.58 C 405.1 364.41 405.46 364.23 405.76 364.04 C 406.27 363.7 406.88 363.17 406.88 362.58 Z M 411.78 354.3 L 408.58 354.3 C 408.39 354.3 408.21 354.2 408.1 354.05 C 408 353.89 407.98 353.69 408.05 353.52 L 409.99 348.65 L 402.62 348.65 L 399.19 355.45 L 402.84 355.45 C 403.02 355.45 403.19 355.54 403.3 355.68 C 403.4 355.83 403.44 356.02 403.38 356.19 L 400.13 366.34 Z M 413.53 354.12 L 399.25 368.88 C 399.14 368.99 398.99 369.05 398.84 369.05 C 398.74 369.05 398.63 369.03 398.54 368.97 C 398.32 368.84 398.21 368.57 398.29 368.32 L 402.05 356.59 L 398.26 356.59 C 398.07 356.59 397.88 356.48 397.78 356.32 C 397.67 356.15 397.66 355.94 397.75 355.77 L 401.75 347.83 C 401.85 347.64 402.05 347.52 402.26 347.52 L 410.84 347.52 C 411.02 347.52 411.2 347.61 411.31 347.77 C 411.42 347.92 411.44 348.12 411.37 348.29 L 409.42 353.16 L 413.12 353.16 C 413.35 353.16 413.56 353.3 413.65 353.51 C 413.74 353.72 413.69 353.96 413.53 354.12 Z M 388.24 371.81 C 389.05 372.27 390.07 372.65 391.27 372.95 L 391.55 371.85 C 390.46 371.58 389.51 371.23 388.8 370.83 Z M 391.27 363.89 L 391.55 362.79 C 390.46 362.51 389.51 362.16 388.8 361.76 L 388.24 362.75 C 389.05 363.2 390.07 363.59 391.27 363.89 Z M 388.24 353.68 L 388.8 352.69 C 389.51 353.09 390.46 353.45 391.55 353.72 L 391.27 354.82 C 390.07 354.52 389.05 354.13 388.24 353.68 Z" fill="#ffffff" stroke="none" pointer-events="none"/><rect x="380" y="300" width="160" height="80" fill="none" stroke="#21c0a5" stroke-width="2" pointer-events="none"/><rect x="560" y="140" width="160" height="40" fill="#45a364" stroke="#45a364" stroke-width="2" pointer-events="none"/><g fill="#ffffff" font-family="Rubik" pointer-events="none" text-anchor="middle" font-size="22px"><text x="639.5" y="173.5">staging</text></g><rect x="560" y="260" width="160" height="40" fill="#193b24" stroke="#45a364" stroke-width="2" pointer-events="none"/><g fill="#FFFFFF" font-family="Rubik" font-style="italic" pointer-events="none" text-anchor="middle" font-size="16px"><text x="639.5" y="286">release candidate</text></g><rect x="560" y="180" width="160" height="40" fill="#45a364" stroke="#45a364" stroke-width="2" pointer-events="none"/><g fill="#ffffff" font-family="Rubik" pointer-events="none" text-anchor="middle" font-size="16px" opacity="0.5"><text x="639.5" y="198.5">environment</text></g><rect x="560" y="220" width="160" height="40" fill="#193b24" stroke="#45a364" stroke-width="2" pointer-events="none"/><g fill="#FFFFFF" font-family="Rubik" font-style="italic" pointer-events="none" text-anchor="middle" font-size="16px" opacity="0.5"><text x="639.5" y="246">OPTIONAL</text></g><path d="M 560 300 L 600 300 L 600 340 L 560 340 Z" fill="url(#mx-gradient-f78e04-1-d05c17-1-s-0)" stroke="none" pointer-events="none"/><path d="M 573.16 334.86 L 566.07 334.86 L 573.91 318.45 L 577.47 325.77 Z M 574.43 316.89 C 574.33 316.69 574.13 316.57 573.91 316.57 L 573.91 316.57 C 573.69 316.57 573.49 316.69 573.39 316.89 L 564.64 335.18 C 564.56 335.36 564.57 335.57 564.67 335.73 C 564.78 335.9 564.96 336 565.16 336 L 573.52 336 C 573.75 336 573.95 335.87 574.04 335.67 L 578.62 326.02 C 578.7 325.86 578.7 325.68 578.62 325.52 Z M 594.3 334.86 L 587.25 334.86 L 575.94 311.18 C 575.84 310.98 575.64 310.86 575.42 310.86 L 570.81 310.86 L 570.81 305.14 L 579.85 305.14 L 591.11 328.82 C 591.21 329.02 591.41 329.14 591.63 329.14 L 594.3 329.14 Z M 594.87 328 L 591.99 328 L 580.73 304.33 C 580.64 304.13 580.44 304 580.22 304 L 570.24 304 C 569.93 304 569.67 304.26 569.67 304.57 L 569.66 311.43 C 569.66 311.58 569.72 311.73 569.83 311.83 C 569.94 311.94 570.08 312 570.24 312 L 575.06 312 L 586.37 335.67 C 586.47 335.87 586.67 336 586.89 336 L 594.87 336 C 595.19 336 595.44 335.74 595.44 335.43 L 595.44 328.57 C 595.44 328.26 595.19 328 594.87 328 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 640 300 L 680 300 L 680 340 L 640 340 Z" fill="url(#mx-gradient-945df2-1-5a30b5-1-s-0)" stroke="none" pointer-events="none"/><path d="M 656.61 328.94 L 658.29 328.94 L 658.29 327.79 L 656.61 327.79 Z M 659.43 328.94 L 661.14 328.94 L 661.14 327.79 L 659.43 327.79 Z M 652.58 305.53 L 645.16 309.21 L 645.16 332.11 L 652.58 334.62 Z M 653.72 312.82 L 653.72 327.79 L 655.43 327.79 L 655.43 328.94 L 653.72 328.94 L 653.72 335.42 C 653.72 335.61 653.63 335.78 653.48 335.89 C 653.38 335.96 653.27 336 653.15 336 C 653.09 336 653.03 335.99 652.97 335.97 L 644.4 333.07 C 644.17 333 644.01 332.78 644.01 332.53 L 644.01 308.86 C 644.01 308.64 644.14 308.44 644.33 308.34 L 652.9 304.09 C 653.07 304 653.28 304.01 653.45 304.12 C 653.62 304.22 653.72 304.41 653.72 304.6 L 653.72 311.67 L 655.43 311.67 L 655.43 312.82 Z M 662.28 328.94 L 664 328.94 L 664 327.79 L 662.28 327.79 Z M 662.32 312.82 L 664 312.82 L 664 311.67 L 662.32 311.67 Z M 659.47 312.82 L 661.14 312.82 L 661.14 311.67 L 659.47 311.67 Z M 656.61 312.82 L 658.29 312.82 L 658.29 311.67 L 656.61 311.67 Z M 674.84 309.21 L 667.42 305.53 L 667.42 334.62 L 674.84 332.11 Z M 675.99 332.53 C 675.99 332.78 675.83 333 675.6 333.07 L 667.03 335.97 C 666.97 335.99 666.91 336 666.85 336 C 666.73 336 666.62 335.96 666.52 335.89 C 666.37 335.78 666.28 335.61 666.28 335.42 L 666.28 328.94 L 665.18 328.94 L 665.18 327.79 L 666.28 327.79 L 666.28 312.82 L 665.18 312.82 L 665.18 311.67 L 666.28 311.67 L 666.28 304.6 C 666.28 304.41 666.38 304.22 666.55 304.12 C 666.72 304.01 666.93 304 667.1 304.09 L 675.67 308.34 C 675.86 308.44 675.99 308.64 675.99 308.86 Z M 661.68 316.48 L 660.61 316.07 L 657.75 323.55 L 658.82 323.96 Z M 665.54 320.13 C 665.77 319.91 665.77 319.54 665.54 319.32 L 663.26 317.02 L 662.45 317.83 L 664.33 319.73 L 662.45 321.62 L 663.26 322.44 Z M 656.74 322.44 L 654.46 320.13 C 654.23 319.91 654.23 319.54 654.46 319.32 L 656.74 317.02 L 657.55 317.83 L 655.67 319.73 L 657.55 321.62 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 600 300 L 640 300 L 640 340 L 600 340 Z" fill="url(#mx-gradient-ff4f8b-1-bc1356-1-s-0)" stroke="none" pointer-events="none"/><path d="M 627.8 334.86 C 626.58 334.86 625.58 333.86 625.58 332.62 C 625.58 331.39 626.58 330.39 627.8 330.39 C 629.03 330.39 630.02 331.39 630.02 332.62 C 630.02 333.86 629.03 334.86 627.8 334.86 Z M 622.93 325.14 L 617.03 325.14 L 614.07 320 L 617.03 314.86 L 622.93 314.86 L 625.89 320 Z M 612.93 309.61 C 611.7 309.61 610.7 308.61 610.7 307.38 C 610.7 306.14 611.7 305.14 612.93 305.14 C 614.15 305.14 615.15 306.14 615.15 307.38 C 615.15 308.61 614.15 309.61 612.93 309.61 Z M 627.8 329.25 C 627.38 329.25 626.98 329.33 626.61 329.47 L 624.19 325.38 L 624.07 325.45 L 627.03 320.29 C 627.14 320.11 627.14 319.89 627.03 319.71 L 623.75 314 C 623.65 313.82 623.46 313.71 623.26 313.71 L 617.29 313.71 L 617.31 313.7 L 615.1 309.95 C 615.82 309.33 616.28 308.4 616.28 307.38 C 616.28 305.51 614.78 304 612.93 304 C 611.08 304 609.57 305.51 609.57 307.38 C 609.57 309.24 611.08 310.75 612.93 310.75 C 613.35 310.75 613.75 310.67 614.12 310.53 L 616.19 314.03 L 612.93 319.71 C 612.82 319.89 612.82 320.11 612.93 320.29 L 616.21 326 C 616.31 326.18 616.5 326.29 616.7 326.29 L 623.26 326.29 C 623.31 326.29 623.35 326.28 623.4 326.27 L 625.63 330.05 C 624.91 330.67 624.45 331.6 624.45 332.62 C 624.45 334.49 625.95 336 627.8 336 C 629.66 336 631.16 334.49 631.16 332.62 C 631.16 330.76 629.66 329.25 627.8 329.25 Z M 631.19 315.49 C 629.97 315.49 628.97 314.49 628.97 313.25 C 628.97 312.02 629.97 311.02 631.19 311.02 C 632.42 311.02 633.41 312.02 633.41 313.25 C 633.41 314.49 632.42 315.49 631.19 315.49 Z M 635.35 319.71 L 633.2 315.96 C 634.02 315.34 634.55 314.36 634.55 313.25 C 634.55 311.39 633.04 309.88 631.19 309.88 C 630.72 309.88 630.27 309.98 629.86 310.15 L 628.1 307.09 C 628 306.91 627.82 306.81 627.61 306.81 L 620.57 306.81 L 620.57 307.95 L 627.28 307.95 L 628.91 310.78 C 628.25 311.4 627.83 312.28 627.83 313.25 C 627.83 315.12 629.34 316.63 631.19 316.63 C 631.54 316.63 631.87 316.58 632.18 316.48 L 634.2 320 L 631.37 324.94 L 632.35 325.51 L 635.35 320.29 C 635.45 320.11 635.45 319.89 635.35 319.71 Z M 609.27 328.71 C 608.05 328.71 607.05 327.71 607.05 326.48 C 607.05 325.25 608.05 324.25 609.27 324.25 C 610.5 324.25 611.5 325.25 611.5 326.48 C 611.5 327.71 610.5 328.71 609.27 328.71 Z M 611.13 329.29 C 612.03 328.68 612.63 327.65 612.63 326.48 C 612.63 324.62 611.12 323.1 609.27 323.1 C 608.74 323.1 608.23 323.23 607.78 323.46 L 605.8 320 L 609.09 314.27 L 608.1 313.7 L 604.65 319.71 C 604.55 319.89 604.55 320.11 604.65 320.29 L 606.86 324.14 C 606.28 324.75 605.92 325.57 605.92 326.48 C 605.92 328.34 607.42 329.86 609.27 329.86 C 609.55 329.86 609.82 329.82 610.08 329.75 L 611.9 332.91 C 612 333.09 612.18 333.19 612.39 333.19 L 619.43 333.19 L 619.43 332.05 L 612.72 332.05 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 600 340 L 640 340 L 640 380 L 600 380 Z" fill="url(#mx-gradient-60a337-1-277116-1-s-0)" stroke="none" pointer-events="none"/><path d="M 631.94 361.65 L 632.16 360.11 C 634.18 361.32 634.21 361.82 634.21 361.83 C 634.2 361.84 633.86 362.13 631.94 361.65 Z M 630.83 361.34 C 627.33 360.29 622.46 358.05 620.49 357.12 C 620.49 357.11 620.49 357.11 620.49 357.1 C 620.49 356.34 619.88 355.72 619.12 355.72 C 618.36 355.72 617.75 356.34 617.75 357.1 C 617.75 357.85 618.36 358.47 619.12 358.47 C 619.45 358.47 619.75 358.35 619.99 358.15 C 622.31 359.25 627.14 361.45 630.67 362.49 L 629.27 372.32 C 629.27 372.35 629.27 372.37 629.27 372.4 C 629.27 373.27 625.43 374.86 619.17 374.86 C 612.84 374.86 608.97 373.27 608.97 372.4 C 608.97 372.37 608.97 372.35 608.97 372.32 L 606.05 351.06 C 608.57 352.8 613.99 353.71 619.18 353.71 C 624.35 353.71 629.76 352.8 632.29 351.07 Z M 605.75 348.84 C 605.79 348.09 610.11 345.14 619.18 345.14 C 628.24 345.14 632.56 348.09 632.6 348.84 L 632.6 349.1 C 632.11 350.79 626.51 352.57 619.18 352.57 C 611.83 352.57 606.23 350.78 605.75 349.09 Z M 633.75 348.86 C 633.75 346.88 628.07 344 619.18 344 C 610.28 344 604.6 346.88 604.6 348.86 L 604.66 349.29 L 607.83 372.44 C 607.9 375.03 614.81 376 619.17 376 C 624.59 376 630.34 374.76 630.41 372.45 L 631.78 362.79 C 632.54 362.97 633.17 363.07 633.67 363.07 C 634.35 363.07 634.8 362.9 635.08 362.57 C 635.31 362.3 635.4 361.97 635.33 361.62 C 635.18 360.83 634.24 359.98 632.33 358.89 L 633.69 349.31 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 680 300 L 720 300 L 720 340 L 680 340 Z" fill="url(#mx-gradient-f78e04-1-d05c17-1-s-0)" stroke="none" pointer-events="none"/><path d="M 707.53 330.06 L 707.53 327.02 L 709.41 326.26 L 709.41 329.3 Z M 704.39 326.26 L 706.27 327.02 L 706.27 330.06 L 704.39 329.3 Z M 700.63 334.45 L 700.63 331.41 L 702.51 330.65 L 702.51 333.69 Z M 697.49 330.65 L 699.37 331.41 L 699.37 334.45 L 697.49 333.69 Z M 693.73 330.06 L 693.73 327.02 L 695.61 326.26 L 695.61 329.3 Z M 690.59 326.26 L 692.47 327.02 L 692.47 330.06 L 690.59 329.3 Z M 693.1 324.76 L 694.55 325.34 L 693.1 325.92 L 691.65 325.34 Z M 700 329.15 L 701.45 329.73 L 700 330.31 L 698.55 329.73 Z M 706.9 324.76 L 708.35 325.34 L 706.9 325.92 L 705.45 325.34 Z M 710.27 324.76 L 707.13 323.5 C 706.98 323.44 706.82 323.44 706.67 323.5 L 703.53 324.76 C 703.29 324.85 703.14 325.08 703.14 325.34 L 703.14 329.05 L 700.23 327.89 C 700.08 327.83 699.92 327.83 699.77 327.89 L 696.86 329.05 L 696.86 325.34 C 696.86 325.08 696.71 324.85 696.47 324.76 L 693.33 323.5 C 693.18 323.44 693.02 323.44 692.87 323.5 L 689.73 324.76 C 689.49 324.85 689.34 325.08 689.34 325.34 L 689.34 329.73 C 689.34 329.98 689.49 330.21 689.73 330.31 L 692.87 331.57 C 692.94 331.59 693.02 331.61 693.1 331.61 C 693.18 331.61 693.26 331.59 693.33 331.57 L 696.24 330.4 L 696.24 334.12 C 696.24 334.37 696.39 334.61 696.63 334.7 L 699.77 335.96 C 699.84 335.98 699.92 336 700 336 C 700.08 336 700.16 335.98 700.23 335.96 L 703.37 334.7 C 703.61 334.61 703.76 334.37 703.76 334.12 L 703.76 330.4 L 706.67 331.57 C 706.74 331.59 706.82 331.61 706.9 331.61 C 706.98 331.61 707.06 331.59 707.13 331.57 L 710.27 330.31 C 710.51 330.21 710.66 329.98 710.66 329.73 L 710.66 325.34 C 710.66 325.08 710.51 324.85 710.27 324.76 Z M 715.68 317.15 C 715.68 320.81 707.6 322.79 700 322.79 C 692.4 322.79 684.32 320.81 684.32 317.15 C 684.32 315.4 686.26 313.85 689.79 312.81 L 690.14 314.01 C 687.33 314.85 685.57 316.05 685.57 317.15 C 685.57 319.22 691.5 321.54 700 321.54 C 708.5 321.54 714.43 319.22 714.43 317.15 C 714.43 316.05 712.67 314.85 709.86 314.01 L 710.21 312.81 C 713.74 313.85 715.68 315.4 715.68 317.15 Z M 700 305.31 L 706.41 307.78 L 700 310.24 L 693.59 307.78 Z M 706.64 317.71 C 705.45 318.24 703.47 318.86 700.63 318.94 L 700.63 311.34 L 707.53 308.69 L 707.53 316.34 C 707.53 316.93 707.18 317.47 706.64 317.71 Z M 692.47 316.34 L 692.47 308.69 L 699.37 311.34 L 699.37 318.94 C 696.53 318.86 694.55 318.24 693.36 317.71 C 692.82 317.47 692.47 316.93 692.47 316.34 Z M 692.85 318.86 C 694.23 319.48 696.59 320.21 700 320.21 C 703.41 320.21 705.77 319.48 707.15 318.86 C 708.14 318.42 708.78 317.43 708.78 316.34 L 708.78 307.78 C 708.78 307.52 708.62 307.28 708.38 307.19 L 700.23 304.06 C 700.08 304 699.92 304 699.77 304.06 L 691.62 307.19 C 691.38 307.28 691.22 307.52 691.22 307.78 L 691.22 316.34 C 691.22 317.43 691.86 318.42 692.85 318.86 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 680 340 L 720 340 L 720 380 L 680 380 Z" fill="url(#mx-gradient-945df2-1-5a30b5-1-s-0)" stroke="none" pointer-events="none"/><path d="M 708.64 366.93 C 708.64 365.98 707.87 365.21 706.93 365.21 C 705.98 365.21 705.21 365.98 705.21 366.93 C 705.21 367.87 705.98 368.64 706.93 368.64 C 707.87 368.64 708.64 367.87 708.64 366.93 Z M 709.78 366.93 C 709.78 368.5 708.5 369.78 706.93 369.78 C 705.35 369.78 704.07 368.5 704.07 366.93 C 704.07 365.35 705.35 364.07 706.93 364.07 C 708.5 364.07 709.78 365.35 709.78 366.93 Z M 694.51 358.68 C 694.51 357.74 693.74 356.97 692.8 356.97 C 691.85 356.97 691.08 357.74 691.08 358.68 C 691.08 359.63 691.85 360.4 692.8 360.4 C 693.74 360.4 694.51 359.63 694.51 358.68 Z M 695.65 358.68 C 695.65 360.26 694.37 361.54 692.8 361.54 C 691.22 361.54 689.94 360.26 689.94 358.68 C 689.94 357.11 691.22 355.82 692.8 355.82 C 694.37 355.82 695.65 357.11 695.65 358.68 Z M 699.85 349.72 C 699.85 350.66 700.61 351.43 701.56 351.43 C 702.51 351.43 703.27 350.66 703.27 349.72 C 703.27 348.77 702.51 348 701.56 348 C 700.61 348 699.85 348.77 699.85 349.72 Z M 698.7 349.72 C 698.7 348.14 699.99 346.86 701.56 346.86 C 703.14 346.86 704.42 348.14 704.42 349.72 C 704.42 351.29 703.14 352.58 701.56 352.58 C 699.99 352.58 698.7 351.29 698.7 349.72 Z M 714.86 360 C 714.86 354.7 712.02 349.8 707.44 347.15 C 706.61 347.31 705.82 347.54 704.83 347.9 L 704.44 346.82 C 704.96 346.64 705.42 346.49 705.87 346.36 C 704.03 345.56 702.03 345.14 700 345.14 C 699.03 345.14 698.09 345.24 697.16 345.42 C 697.83 345.82 698.43 346.21 699 346.65 L 698.31 347.56 C 697.5 346.94 696.65 346.42 695.54 345.83 C 689.93 347.6 685.89 352.55 685.25 358.36 C 686.42 358.12 687.55 357.99 688.81 357.96 L 688.84 359.1 C 687.52 359.13 686.39 359.27 685.16 359.55 C 685.15 359.7 685.14 359.85 685.14 360 C 685.14 364.95 687.59 369.51 691.62 372.26 C 690.9 370.12 690.54 368.11 690.54 366.14 C 690.54 365.02 690.74 364.1 690.94 363.12 C 690.99 362.9 691.04 362.67 691.08 362.43 L 692.2 362.65 C 692.16 362.89 692.11 363.13 692.06 363.36 C 691.86 364.31 691.69 365.14 691.69 366.14 C 691.69 368.37 692.18 370.68 693.17 373.19 C 695.3 374.29 697.59 374.86 700 374.86 C 701.57 374.86 703.11 374.61 704.58 374.12 C 705.15 372.99 705.58 371.92 705.94 370.69 L 707.03 371 C 706.77 371.9 706.48 372.72 706.12 373.53 C 707.04 373.11 707.91 372.6 708.73 372 C 708.54 371.52 708.32 371.04 708.09 370.57 L 709.11 370.06 C 709.31 370.46 709.49 370.86 709.67 371.27 C 712.97 368.44 714.86 364.38 714.86 360 Z M 716 360 C 716 364.99 713.73 369.6 709.78 372.66 C 708.81 373.42 707.74 374.05 706.62 374.56 C 706.15 374.77 705.66 374.97 705.16 375.14 C 703.52 375.71 701.78 376 700 376 C 697.37 376 694.76 375.35 692.45 374.11 C 687.24 371.32 684 365.91 684 360 C 684 359.61 684.01 359.31 684.03 359.03 C 684.42 352.36 689 346.58 695.43 344.67 C 696.89 344.22 698.43 344 700 344 C 702.75 344 705.45 344.71 707.82 346.05 C 712.86 348.87 716 354.22 716 360 Z M 698.47 351.69 L 697.71 350.83 C 696.43 351.95 695.44 353.14 694.27 354.93 L 695.23 355.55 C 696.33 353.85 697.27 352.74 698.47 351.69 Z M 696.73 359.1 L 696.36 360.18 C 698.98 361.08 701.27 362.52 703.56 364.71 L 704.35 363.88 C 701.94 361.58 699.51 360.06 696.73 359.1 Z M 704.37 352.38 C 706.51 355.65 707.72 359.24 707.96 363.05 L 706.82 363.12 C 706.59 359.51 705.45 356.11 703.41 353.01 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 640 340 L 680 340 L 680 380 L 640 380 Z" fill="url(#mx-gradient-4d72f3-1-3334b9-1-s-0)" stroke="none" pointer-events="none"/><path d="M 645.95 345.14 L 651.26 350.45 L 650.45 351.26 L 645.14 345.95 L 645.14 350.29 L 644 350.29 L 644 344.57 C 644 344.26 644.26 344 644.57 344 L 650.29 344 L 650.29 345.14 Z M 676 344.57 L 676 350.29 L 674.86 350.29 L 674.86 345.95 L 669.55 351.26 L 668.74 350.45 L 674.05 345.14 L 669.71 345.14 L 669.71 344 L 675.43 344 C 675.74 344 676 344.26 676 344.57 Z M 674.86 369.71 L 676 369.71 L 676 375.43 C 676 375.74 675.74 376 675.43 376 L 669.71 376 L 669.71 374.86 L 674.05 374.86 L 668.74 369.55 L 669.55 368.74 L 674.86 374.05 Z M 674.57 359.55 C 674.57 357.65 672.38 355.78 668.71 354.54 L 669.08 353.46 C 673.3 354.88 675.71 357.1 675.71 359.55 C 675.71 362 673.3 364.22 669.08 365.65 L 668.71 364.56 C 672.38 363.32 674.57 361.45 674.57 359.55 Z M 645.46 359.55 C 645.46 361.37 647.51 363.19 650.94 364.43 L 650.56 365.51 C 646.59 364.07 644.32 361.9 644.32 359.55 C 644.32 357.2 646.59 355.03 650.56 353.6 L 650.94 354.67 C 647.51 355.91 645.46 357.73 645.46 359.55 Z M 651.26 369.55 L 645.95 374.86 L 650.29 374.86 L 650.29 376 L 644.57 376 C 644.26 376 644 375.74 644 375.43 L 644 369.71 L 645.14 369.71 L 645.14 374.05 L 650.45 368.74 Z M 660 355.02 C 655.92 355.02 653.71 353.97 653.71 353.53 C 653.71 353.1 655.92 352.05 660 352.05 C 664.08 352.05 666.29 353.1 666.29 353.53 C 666.29 353.97 664.08 355.02 660 355.02 Z M 660.02 359.45 C 656.11 359.45 653.71 358.38 653.71 357.8 L 653.71 355.02 C 655.12 355.8 657.62 356.16 660 356.16 C 662.38 356.16 664.88 355.8 666.29 355.02 L 666.29 357.8 C 666.29 358.38 663.91 359.45 660.02 359.45 Z M 660.02 363.81 C 656.11 363.81 653.71 362.74 653.71 362.16 L 653.71 359.35 C 655.1 360.17 657.57 360.59 660.02 360.59 C 662.45 360.59 664.9 360.17 666.29 359.35 L 666.29 362.16 C 666.29 362.74 663.91 363.81 660.02 363.81 Z M 660 367.72 C 655.93 367.72 653.71 366.63 653.71 366.07 L 653.71 363.71 C 655.1 364.53 657.57 364.95 660.02 364.95 C 662.45 364.95 664.9 364.53 666.29 363.72 L 666.29 366.07 C 666.29 366.63 664.07 367.72 660 367.72 Z M 660 350.91 C 656.42 350.91 652.57 351.73 652.57 353.53 L 652.57 366.07 C 652.57 367.91 656.31 368.87 660 368.87 C 663.69 368.87 667.43 367.91 667.43 366.07 L 667.43 353.53 C 667.43 351.73 663.58 350.91 660 350.91 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 560 340 L 600 340 L 600 380 L 560 380 Z" fill="url(#mx-gradient-4d72f3-1-3334b9-1-s-0)" stroke="none" pointer-events="none"/><path d="M 586.88 368.49 C 584.98 370.03 580.98 370.84 577.15 370.84 C 573.32 370.84 569.31 370.03 567.41 368.49 L 567.41 371.59 L 567.41 371.59 C 567.41 373.14 571.41 374.87 577.15 374.87 C 582.88 374.87 586.88 373.14 586.88 371.59 Z M 586.88 362.58 L 588.03 362.58 L 588.03 362.58 C 588.03 363.27 587.68 363.92 587.01 364.51 C 587.82 365.23 588.03 365.93 588.03 366.43 C 588.03 366.44 588.03 366.44 588.03 366.44 L 588.03 371.59 L 588.03 371.59 C 588.03 374.45 582.42 376 577.15 376 C 571.88 376 566.29 374.46 566.27 371.61 C 566.27 371.61 566.26 371.61 566.26 371.6 L 566.26 366.43 C 566.26 366.43 566.26 366.43 566.26 366.43 C 566.27 365.93 566.47 365.22 567.28 364.51 C 566.48 363.79 566.27 363.09 566.26 362.6 L 566.26 362.6 C 566.26 362.59 566.26 362.59 566.26 362.59 L 566.26 357.42 C 566.26 357.42 566.26 357.42 566.26 357.41 C 566.27 356.91 566.47 356.21 567.29 355.5 C 566.48 354.78 566.27 354.08 566.26 353.58 L 566.26 353.58 C 566.26 353.58 566.26 353.58 566.26 353.58 L 566.26 348.41 C 566.26 348.41 566.26 348.4 566.26 348.4 C 566.27 345.54 571.88 344 577.15 344 C 580.12 344 582.98 344.47 584.99 345.3 L 584.56 346.35 C 582.68 345.58 579.98 345.13 577.15 345.13 C 571.41 345.13 567.41 346.86 567.41 348.41 C 567.41 349.96 571.41 351.69 577.15 351.69 C 577.3 351.69 577.45 351.69 577.61 351.68 L 577.65 352.81 C 577.48 352.82 577.32 352.82 577.15 352.82 C 573.32 352.82 569.31 352 567.41 350.46 L 567.41 353.57 L 567.41 353.57 L 567.41 353.58 C 567.41 354.17 568.02 354.69 568.53 355.02 C 570.07 356 572.82 356.67 575.9 356.81 L 575.84 357.94 C 572.73 357.8 570.01 357.16 568.25 356.17 C 567.82 356.49 567.41 356.93 567.41 357.42 C 567.41 358.97 571.41 360.7 577.15 360.7 C 577.71 360.7 578.27 360.68 578.81 360.64 L 578.89 361.77 C 578.32 361.81 577.74 361.83 577.15 361.83 C 573.32 361.83 569.31 361.02 567.41 359.47 L 567.41 362.58 L 567.41 362.58 C 567.41 363.19 568.02 363.7 568.53 364.03 C 570.29 365.16 573.59 365.85 577.15 365.85 L 577.4 365.85 L 577.4 366.99 L 577.15 366.99 C 573.54 366.99 570.25 366.32 568.25 365.18 C 567.82 365.51 567.41 365.94 567.41 366.43 C 567.41 367.98 571.41 369.71 577.15 369.71 C 582.88 369.71 586.88 367.99 586.88 366.44 L 586.88 366.43 L 586.88 366.43 C 586.88 365.94 586.47 365.5 586.04 365.18 C 585.76 365.34 585.46 365.49 585.12 365.63 L 584.69 364.58 C 585.1 364.41 585.46 364.23 585.76 364.04 C 586.27 363.7 586.88 363.17 586.88 362.58 Z M 591.78 354.3 L 588.58 354.3 C 588.39 354.3 588.21 354.2 588.1 354.05 C 588 353.89 587.98 353.69 588.05 353.52 L 589.99 348.65 L 582.62 348.65 L 579.19 355.45 L 582.84 355.45 C 583.02 355.45 583.19 355.54 583.3 355.68 C 583.4 355.83 583.44 356.02 583.38 356.19 L 580.13 366.34 Z M 593.53 354.12 L 579.25 368.88 C 579.14 368.99 578.99 369.05 578.84 369.05 C 578.74 369.05 578.63 369.03 578.54 368.97 C 578.32 368.84 578.21 368.57 578.29 368.32 L 582.05 356.59 L 578.26 356.59 C 578.07 356.59 577.88 356.48 577.78 356.32 C 577.67 356.15 577.66 355.94 577.75 355.77 L 581.75 347.83 C 581.85 347.64 582.05 347.52 582.26 347.52 L 590.84 347.52 C 591.02 347.52 591.2 347.61 591.31 347.77 C 591.42 347.92 591.44 348.12 591.37 348.29 L 589.42 353.16 L 593.12 353.16 C 593.35 353.16 593.56 353.3 593.65 353.51 C 593.74 353.72 593.69 353.96 593.53 354.12 Z M 568.24 371.81 C 569.05 372.27 570.07 372.65 571.27 372.95 L 571.55 371.85 C 570.46 371.58 569.51 371.23 568.8 370.83 Z M 571.27 363.89 L 571.55 362.79 C 570.46 362.51 569.51 362.16 568.8 361.76 L 568.24 362.75 C 569.05 363.2 570.07 363.59 571.27 363.89 Z M 568.24 353.68 L 568.8 352.69 C 569.51 353.09 570.46 353.45 571.55 353.72 L 571.27 354.82 C 570.07 354.52 569.05 354.13 568.24 353.68 Z" fill="#ffffff" stroke="none" pointer-events="none"/><rect x="560" y="300" width="160" height="80" fill="none" stroke="#45a364" stroke-width="2" pointer-events="none"/><rect x="740" y="140" width="160" height="40" fill="#d86613" stroke="#d86613" stroke-width="2" pointer-events="none"/><g fill="#ffffff" font-family="Rubik" pointer-events="none" text-anchor="middle" font-size="22px"><text x="819.5" y="173.5">preproduction</text></g><rect x="740" y="260" width="160" height="40" fill="#3d1d05" stroke="#d86613" stroke-width="2" pointer-events="none"/><g fill="#FFFFFF" font-family="Rubik" font-style="italic" pointer-events="none" text-anchor="middle" font-size="16px"><text x="819.5" y="286">for QA purposes</text></g><rect x="740" y="180" width="160" height="40" fill="#d86613" stroke="#d86613" stroke-width="2" pointer-events="none"/><g fill="#ffffff" font-family="Rubik" pointer-events="none" text-anchor="middle" font-size="16px" opacity="0.5"><text x="819.5" y="198.5">environment</text></g><rect x="740" y="220" width="160" height="40" fill="#3d1d05" stroke="#d86613" stroke-width="2" pointer-events="none"/><g fill="#FFFFFF" font-family="Rubik" font-style="italic" pointer-events="none" text-anchor="middle" font-size="16px" opacity="0.5"><text x="819.5" y="246">OPTIONAL</text></g><path d="M 740 300 L 780 300 L 780 340 L 740 340 Z" fill="url(#mx-gradient-f78e04-1-d05c17-1-s-0)" stroke="none" pointer-events="none"/><path d="M 753.16 334.86 L 746.07 334.86 L 753.91 318.45 L 757.47 325.77 Z M 754.43 316.89 C 754.33 316.69 754.13 316.57 753.91 316.57 L 753.91 316.57 C 753.69 316.57 753.49 316.69 753.39 316.89 L 744.64 335.18 C 744.56 335.36 744.57 335.57 744.67 335.73 C 744.78 335.9 744.96 336 745.16 336 L 753.52 336 C 753.75 336 753.95 335.87 754.04 335.67 L 758.62 326.02 C 758.7 325.86 758.7 325.68 758.62 325.52 Z M 774.3 334.86 L 767.25 334.86 L 755.94 311.18 C 755.84 310.98 755.64 310.86 755.42 310.86 L 750.81 310.86 L 750.81 305.14 L 759.85 305.14 L 771.11 328.82 C 771.21 329.02 771.41 329.14 771.63 329.14 L 774.3 329.14 Z M 774.87 328 L 771.99 328 L 760.73 304.33 C 760.64 304.13 760.44 304 760.22 304 L 750.24 304 C 749.93 304 749.67 304.26 749.67 304.57 L 749.66 311.43 C 749.66 311.58 749.72 311.73 749.83 311.83 C 749.94 311.94 750.08 312 750.24 312 L 755.06 312 L 766.37 335.67 C 766.47 335.87 766.67 336 766.89 336 L 774.87 336 C 775.19 336 775.44 335.74 775.44 335.43 L 775.44 328.57 C 775.44 328.26 775.19 328 774.87 328 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 820 300 L 860 300 L 860 340 L 820 340 Z" fill="url(#mx-gradient-945df2-1-5a30b5-1-s-0)" stroke="none" pointer-events="none"/><path d="M 836.61 328.94 L 838.29 328.94 L 838.29 327.79 L 836.61 327.79 Z M 839.43 328.94 L 841.14 328.94 L 841.14 327.79 L 839.43 327.79 Z M 832.58 305.53 L 825.16 309.21 L 825.16 332.11 L 832.58 334.62 Z M 833.72 312.82 L 833.72 327.79 L 835.43 327.79 L 835.43 328.94 L 833.72 328.94 L 833.72 335.42 C 833.72 335.61 833.63 335.78 833.48 335.89 C 833.38 335.96 833.27 336 833.15 336 C 833.09 336 833.03 335.99 832.97 335.97 L 824.4 333.07 C 824.17 333 824.01 332.78 824.01 332.53 L 824.01 308.86 C 824.01 308.64 824.14 308.44 824.33 308.34 L 832.9 304.09 C 833.07 304 833.28 304.01 833.45 304.12 C 833.62 304.22 833.72 304.41 833.72 304.6 L 833.72 311.67 L 835.43 311.67 L 835.43 312.82 Z M 842.28 328.94 L 844 328.94 L 844 327.79 L 842.28 327.79 Z M 842.32 312.82 L 844 312.82 L 844 311.67 L 842.32 311.67 Z M 839.47 312.82 L 841.14 312.82 L 841.14 311.67 L 839.47 311.67 Z M 836.61 312.82 L 838.29 312.82 L 838.29 311.67 L 836.61 311.67 Z M 854.84 309.21 L 847.42 305.53 L 847.42 334.62 L 854.84 332.11 Z M 855.99 332.53 C 855.99 332.78 855.83 333 855.6 333.07 L 847.03 335.97 C 846.97 335.99 846.91 336 846.85 336 C 846.73 336 846.62 335.96 846.52 335.89 C 846.37 335.78 846.28 335.61 846.28 335.42 L 846.28 328.94 L 845.18 328.94 L 845.18 327.79 L 846.28 327.79 L 846.28 312.82 L 845.18 312.82 L 845.18 311.67 L 846.28 311.67 L 846.28 304.6 C 846.28 304.41 846.38 304.22 846.55 304.12 C 846.72 304.01 846.93 304 847.1 304.09 L 855.67 308.34 C 855.86 308.44 855.99 308.64 855.99 308.86 Z M 841.68 316.48 L 840.61 316.07 L 837.75 323.55 L 838.82 323.96 Z M 845.54 320.13 C 845.77 319.91 845.77 319.54 845.54 319.32 L 843.26 317.02 L 842.45 317.83 L 844.33 319.73 L 842.45 321.62 L 843.26 322.44 Z M 836.74 322.44 L 834.46 320.13 C 834.23 319.91 834.23 319.54 834.46 319.32 L 836.74 317.02 L 837.55 317.83 L 835.67 319.73 L 837.55 321.62 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 780 300 L 820 300 L 820 340 L 780 340 Z" fill="url(#mx-gradient-ff4f8b-1-bc1356-1-s-0)" stroke="none" pointer-events="none"/><path d="M 807.8 334.86 C 806.58 334.86 805.58 333.86 805.58 332.62 C 805.58 331.39 806.58 330.39 807.8 330.39 C 809.03 330.39 810.02 331.39 810.02 332.62 C 810.02 333.86 809.03 334.86 807.8 334.86 Z M 802.93 325.14 L 797.03 325.14 L 794.07 320 L 797.03 314.86 L 802.93 314.86 L 805.89 320 Z M 792.93 309.61 C 791.7 309.61 790.7 308.61 790.7 307.38 C 790.7 306.14 791.7 305.14 792.93 305.14 C 794.15 305.14 795.15 306.14 795.15 307.38 C 795.15 308.61 794.15 309.61 792.93 309.61 Z M 807.8 329.25 C 807.38 329.25 806.98 329.33 806.61 329.47 L 804.19 325.38 L 804.07 325.45 L 807.03 320.29 C 807.14 320.11 807.14 319.89 807.03 319.71 L 803.75 314 C 803.65 313.82 803.46 313.71 803.26 313.71 L 797.29 313.71 L 797.31 313.7 L 795.1 309.95 C 795.82 309.33 796.28 308.4 796.28 307.38 C 796.28 305.51 794.78 304 792.93 304 C 791.08 304 789.57 305.51 789.57 307.38 C 789.57 309.24 791.08 310.75 792.93 310.75 C 793.35 310.75 793.75 310.67 794.12 310.53 L 796.19 314.03 L 792.93 319.71 C 792.82 319.89 792.82 320.11 792.93 320.29 L 796.21 326 C 796.31 326.18 796.5 326.29 796.7 326.29 L 803.26 326.29 C 803.31 326.29 803.35 326.28 803.4 326.27 L 805.63 330.05 C 804.91 330.67 804.45 331.6 804.45 332.62 C 804.45 334.49 805.95 336 807.8 336 C 809.66 336 811.16 334.49 811.16 332.62 C 811.16 330.76 809.66 329.25 807.8 329.25 Z M 811.19 315.49 C 809.97 315.49 808.97 314.49 808.97 313.25 C 808.97 312.02 809.97 311.02 811.19 311.02 C 812.42 311.02 813.41 312.02 813.41 313.25 C 813.41 314.49 812.42 315.49 811.19 315.49 Z M 815.35 319.71 L 813.2 315.96 C 814.02 315.34 814.55 314.36 814.55 313.25 C 814.55 311.39 813.04 309.88 811.19 309.88 C 810.72 309.88 810.27 309.98 809.86 310.15 L 808.1 307.09 C 808 306.91 807.82 306.81 807.61 306.81 L 800.57 306.81 L 800.57 307.95 L 807.28 307.95 L 808.91 310.78 C 808.25 311.4 807.83 312.28 807.83 313.25 C 807.83 315.12 809.34 316.63 811.19 316.63 C 811.54 316.63 811.87 316.58 812.18 316.48 L 814.2 320 L 811.37 324.94 L 812.35 325.51 L 815.35 320.29 C 815.45 320.11 815.45 319.89 815.35 319.71 Z M 789.27 328.71 C 788.05 328.71 787.05 327.71 787.05 326.48 C 787.05 325.25 788.05 324.25 789.27 324.25 C 790.5 324.25 791.5 325.25 791.5 326.48 C 791.5 327.71 790.5 328.71 789.27 328.71 Z M 791.13 329.29 C 792.03 328.68 792.63 327.65 792.63 326.48 C 792.63 324.62 791.12 323.1 789.27 323.1 C 788.74 323.1 788.23 323.23 787.78 323.46 L 785.8 320 L 789.09 314.27 L 788.1 313.7 L 784.65 319.71 C 784.55 319.89 784.55 320.11 784.65 320.29 L 786.86 324.14 C 786.28 324.75 785.92 325.57 785.92 326.48 C 785.92 328.34 787.42 329.86 789.27 329.86 C 789.55 329.86 789.82 329.82 790.08 329.75 L 791.9 332.91 C 792 333.09 792.18 333.19 792.39 333.19 L 799.43 333.19 L 799.43 332.05 L 792.72 332.05 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 780 340 L 820 340 L 820 380 L 780 380 Z" fill="url(#mx-gradient-60a337-1-277116-1-s-0)" stroke="none" pointer-events="none"/><path d="M 811.94 361.65 L 812.16 360.11 C 814.18 361.32 814.21 361.82 814.21 361.83 C 814.2 361.84 813.86 362.13 811.94 361.65 Z M 810.83 361.34 C 807.33 360.29 802.46 358.05 800.49 357.12 C 800.49 357.11 800.49 357.11 800.49 357.1 C 800.49 356.34 799.88 355.72 799.12 355.72 C 798.36 355.72 797.75 356.34 797.75 357.1 C 797.75 357.85 798.36 358.47 799.12 358.47 C 799.45 358.47 799.75 358.35 799.99 358.15 C 802.31 359.25 807.14 361.45 810.67 362.49 L 809.27 372.32 C 809.27 372.35 809.27 372.37 809.27 372.4 C 809.27 373.27 805.43 374.86 799.17 374.86 C 792.84 374.86 788.97 373.27 788.97 372.4 C 788.97 372.37 788.97 372.35 788.97 372.32 L 786.05 351.06 C 788.57 352.8 793.99 353.71 799.18 353.71 C 804.35 353.71 809.76 352.8 812.29 351.07 Z M 785.75 348.84 C 785.79 348.09 790.11 345.14 799.18 345.14 C 808.24 345.14 812.56 348.09 812.6 348.84 L 812.6 349.1 C 812.11 350.79 806.51 352.57 799.18 352.57 C 791.83 352.57 786.23 350.78 785.75 349.09 Z M 813.75 348.86 C 813.75 346.88 808.07 344 799.18 344 C 790.28 344 784.6 346.88 784.6 348.86 L 784.66 349.29 L 787.83 372.44 C 787.9 375.03 794.81 376 799.17 376 C 804.59 376 810.34 374.76 810.41 372.45 L 811.78 362.79 C 812.54 362.97 813.17 363.07 813.67 363.07 C 814.35 363.07 814.8 362.9 815.08 362.57 C 815.31 362.3 815.4 361.97 815.33 361.62 C 815.18 360.83 814.24 359.98 812.33 358.89 L 813.69 349.31 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 860 300 L 900 300 L 900 340 L 860 340 Z" fill="url(#mx-gradient-f78e04-1-d05c17-1-s-0)" stroke="none" pointer-events="none"/><path d="M 887.53 330.06 L 887.53 327.02 L 889.41 326.26 L 889.41 329.3 Z M 884.39 326.26 L 886.27 327.02 L 886.27 330.06 L 884.39 329.3 Z M 880.63 334.45 L 880.63 331.41 L 882.51 330.65 L 882.51 333.69 Z M 877.49 330.65 L 879.37 331.41 L 879.37 334.45 L 877.49 333.69 Z M 873.73 330.06 L 873.73 327.02 L 875.61 326.26 L 875.61 329.3 Z M 870.59 326.26 L 872.47 327.02 L 872.47 330.06 L 870.59 329.3 Z M 873.1 324.76 L 874.55 325.34 L 873.1 325.92 L 871.65 325.34 Z M 880 329.15 L 881.45 329.73 L 880 330.31 L 878.55 329.73 Z M 886.9 324.76 L 888.35 325.34 L 886.9 325.92 L 885.45 325.34 Z M 890.27 324.76 L 887.13 323.5 C 886.98 323.44 886.82 323.44 886.67 323.5 L 883.53 324.76 C 883.29 324.85 883.14 325.08 883.14 325.34 L 883.14 329.05 L 880.23 327.89 C 880.08 327.83 879.92 327.83 879.77 327.89 L 876.86 329.05 L 876.86 325.34 C 876.86 325.08 876.71 324.85 876.47 324.76 L 873.33 323.5 C 873.18 323.44 873.02 323.44 872.87 323.5 L 869.73 324.76 C 869.49 324.85 869.34 325.08 869.34 325.34 L 869.34 329.73 C 869.34 329.98 869.49 330.21 869.73 330.31 L 872.87 331.57 C 872.94 331.59 873.02 331.61 873.1 331.61 C 873.18 331.61 873.26 331.59 873.33 331.57 L 876.24 330.4 L 876.24 334.12 C 876.24 334.37 876.39 334.61 876.63 334.7 L 879.77 335.96 C 879.84 335.98 879.92 336 880 336 C 880.08 336 880.16 335.98 880.23 335.96 L 883.37 334.7 C 883.61 334.61 883.76 334.37 883.76 334.12 L 883.76 330.4 L 886.67 331.57 C 886.74 331.59 886.82 331.61 886.9 331.61 C 886.98 331.61 887.06 331.59 887.13 331.57 L 890.27 330.31 C 890.51 330.21 890.66 329.98 890.66 329.73 L 890.66 325.34 C 890.66 325.08 890.51 324.85 890.27 324.76 Z M 895.68 317.15 C 895.68 320.81 887.6 322.79 880 322.79 C 872.4 322.79 864.32 320.81 864.32 317.15 C 864.32 315.4 866.26 313.85 869.79 312.81 L 870.14 314.01 C 867.33 314.85 865.57 316.05 865.57 317.15 C 865.57 319.22 871.5 321.54 880 321.54 C 888.5 321.54 894.43 319.22 894.43 317.15 C 894.43 316.05 892.67 314.85 889.86 314.01 L 890.21 312.81 C 893.74 313.85 895.68 315.4 895.68 317.15 Z M 880 305.31 L 886.41 307.78 L 880 310.24 L 873.59 307.78 Z M 886.64 317.71 C 885.45 318.24 883.47 318.86 880.63 318.94 L 880.63 311.34 L 887.53 308.69 L 887.53 316.34 C 887.53 316.93 887.18 317.47 886.64 317.71 Z M 872.47 316.34 L 872.47 308.69 L 879.37 311.34 L 879.37 318.94 C 876.53 318.86 874.55 318.24 873.36 317.71 C 872.82 317.47 872.47 316.93 872.47 316.34 Z M 872.85 318.86 C 874.23 319.48 876.59 320.21 880 320.21 C 883.41 320.21 885.77 319.48 887.15 318.86 C 888.14 318.42 888.78 317.43 888.78 316.34 L 888.78 307.78 C 888.78 307.52 888.62 307.28 888.38 307.19 L 880.23 304.06 C 880.08 304 879.92 304 879.77 304.06 L 871.62 307.19 C 871.38 307.28 871.22 307.52 871.22 307.78 L 871.22 316.34 C 871.22 317.43 871.86 318.42 872.85 318.86 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 860 340 L 900 340 L 900 380 L 860 380 Z" fill="url(#mx-gradient-945df2-1-5a30b5-1-s-0)" stroke="none" pointer-events="none"/><path d="M 888.64 366.93 C 888.64 365.98 887.87 365.21 886.93 365.21 C 885.98 365.21 885.21 365.98 885.21 366.93 C 885.21 367.87 885.98 368.64 886.93 368.64 C 887.87 368.64 888.64 367.87 888.64 366.93 Z M 889.78 366.93 C 889.78 368.5 888.5 369.78 886.93 369.78 C 885.35 369.78 884.07 368.5 884.07 366.93 C 884.07 365.35 885.35 364.07 886.93 364.07 C 888.5 364.07 889.78 365.35 889.78 366.93 Z M 874.51 358.68 C 874.51 357.74 873.74 356.97 872.8 356.97 C 871.85 356.97 871.08 357.74 871.08 358.68 C 871.08 359.63 871.85 360.4 872.8 360.4 C 873.74 360.4 874.51 359.63 874.51 358.68 Z M 875.65 358.68 C 875.65 360.26 874.37 361.54 872.8 361.54 C 871.22 361.54 869.94 360.26 869.94 358.68 C 869.94 357.11 871.22 355.82 872.8 355.82 C 874.37 355.82 875.65 357.11 875.65 358.68 Z M 879.85 349.72 C 879.85 350.66 880.61 351.43 881.56 351.43 C 882.51 351.43 883.27 350.66 883.27 349.72 C 883.27 348.77 882.51 348 881.56 348 C 880.61 348 879.85 348.77 879.85 349.72 Z M 878.7 349.72 C 878.7 348.14 879.99 346.86 881.56 346.86 C 883.14 346.86 884.42 348.14 884.42 349.72 C 884.42 351.29 883.14 352.58 881.56 352.58 C 879.99 352.58 878.7 351.29 878.7 349.72 Z M 894.86 360 C 894.86 354.7 892.02 349.8 887.44 347.15 C 886.61 347.31 885.82 347.54 884.83 347.9 L 884.44 346.82 C 884.96 346.64 885.42 346.49 885.87 346.36 C 884.03 345.56 882.03 345.14 880 345.14 C 879.03 345.14 878.09 345.24 877.16 345.42 C 877.83 345.82 878.43 346.21 879 346.65 L 878.31 347.56 C 877.5 346.94 876.65 346.42 875.54 345.83 C 869.93 347.6 865.89 352.55 865.25 358.36 C 866.42 358.12 867.55 357.99 868.81 357.96 L 868.84 359.1 C 867.52 359.13 866.39 359.27 865.16 359.55 C 865.15 359.7 865.14 359.85 865.14 360 C 865.14 364.95 867.59 369.51 871.62 372.26 C 870.9 370.12 870.54 368.11 870.54 366.14 C 870.54 365.02 870.74 364.1 870.94 363.12 C 870.99 362.9 871.04 362.67 871.08 362.43 L 872.2 362.65 C 872.16 362.89 872.11 363.13 872.06 363.36 C 871.86 364.31 871.69 365.14 871.69 366.14 C 871.69 368.37 872.18 370.68 873.17 373.19 C 875.3 374.29 877.59 374.86 880 374.86 C 881.57 374.86 883.11 374.61 884.58 374.12 C 885.15 372.99 885.58 371.92 885.94 370.69 L 887.03 371 C 886.77 371.9 886.48 372.72 886.12 373.53 C 887.04 373.11 887.91 372.6 888.73 372 C 888.54 371.52 888.32 371.04 888.09 370.57 L 889.11 370.06 C 889.31 370.46 889.49 370.86 889.67 371.27 C 892.97 368.44 894.86 364.38 894.86 360 Z M 896 360 C 896 364.99 893.73 369.6 889.78 372.66 C 888.81 373.42 887.74 374.05 886.62 374.56 C 886.15 374.77 885.66 374.97 885.16 375.14 C 883.52 375.71 881.78 376 880 376 C 877.37 376 874.76 375.35 872.45 374.11 C 867.24 371.32 864 365.91 864 360 C 864 359.61 864.01 359.31 864.03 359.03 C 864.42 352.36 869 346.58 875.43 344.67 C 876.89 344.22 878.43 344 880 344 C 882.75 344 885.45 344.71 887.82 346.05 C 892.86 348.87 896 354.22 896 360 Z M 878.47 351.69 L 877.71 350.83 C 876.43 351.95 875.44 353.14 874.27 354.93 L 875.23 355.55 C 876.33 353.85 877.27 352.74 878.47 351.69 Z M 876.73 359.1 L 876.36 360.18 C 878.98 361.08 881.27 362.52 883.56 364.71 L 884.35 363.88 C 881.94 361.58 879.51 360.06 876.73 359.1 Z M 884.37 352.38 C 886.51 355.65 887.72 359.24 887.96 363.05 L 886.82 363.12 C 886.59 359.51 885.45 356.11 883.41 353.01 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 820 340 L 860 340 L 860 380 L 820 380 Z" fill="url(#mx-gradient-4d72f3-1-3334b9-1-s-0)" stroke="none" pointer-events="none"/><path d="M 825.95 345.14 L 831.26 350.45 L 830.45 351.26 L 825.14 345.95 L 825.14 350.29 L 824 350.29 L 824 344.57 C 824 344.26 824.26 344 824.57 344 L 830.29 344 L 830.29 345.14 Z M 856 344.57 L 856 350.29 L 854.86 350.29 L 854.86 345.95 L 849.55 351.26 L 848.74 350.45 L 854.05 345.14 L 849.71 345.14 L 849.71 344 L 855.43 344 C 855.74 344 856 344.26 856 344.57 Z M 854.86 369.71 L 856 369.71 L 856 375.43 C 856 375.74 855.74 376 855.43 376 L 849.71 376 L 849.71 374.86 L 854.05 374.86 L 848.74 369.55 L 849.55 368.74 L 854.86 374.05 Z M 854.57 359.55 C 854.57 357.65 852.38 355.78 848.71 354.54 L 849.08 353.46 C 853.3 354.88 855.71 357.1 855.71 359.55 C 855.71 362 853.3 364.22 849.08 365.65 L 848.71 364.56 C 852.38 363.32 854.57 361.45 854.57 359.55 Z M 825.46 359.55 C 825.46 361.37 827.51 363.19 830.94 364.43 L 830.56 365.51 C 826.59 364.07 824.32 361.9 824.32 359.55 C 824.32 357.2 826.59 355.03 830.56 353.6 L 830.94 354.67 C 827.51 355.91 825.46 357.73 825.46 359.55 Z M 831.26 369.55 L 825.95 374.86 L 830.29 374.86 L 830.29 376 L 824.57 376 C 824.26 376 824 375.74 824 375.43 L 824 369.71 L 825.14 369.71 L 825.14 374.05 L 830.45 368.74 Z M 840 355.02 C 835.92 355.02 833.71 353.97 833.71 353.53 C 833.71 353.1 835.92 352.05 840 352.05 C 844.08 352.05 846.29 353.1 846.29 353.53 C 846.29 353.97 844.08 355.02 840 355.02 Z M 840.02 359.45 C 836.11 359.45 833.71 358.38 833.71 357.8 L 833.71 355.02 C 835.12 355.8 837.62 356.16 840 356.16 C 842.38 356.16 844.88 355.8 846.29 355.02 L 846.29 357.8 C 846.29 358.38 843.91 359.45 840.02 359.45 Z M 840.02 363.81 C 836.11 363.81 833.71 362.74 833.71 362.16 L 833.71 359.35 C 835.1 360.17 837.57 360.59 840.02 360.59 C 842.45 360.59 844.9 360.17 846.29 359.35 L 846.29 362.16 C 846.29 362.74 843.91 363.81 840.02 363.81 Z M 840 367.72 C 835.93 367.72 833.71 366.63 833.71 366.07 L 833.71 363.71 C 835.1 364.53 837.57 364.95 840.02 364.95 C 842.45 364.95 844.9 364.53 846.29 363.72 L 846.29 366.07 C 846.29 366.63 844.07 367.72 840 367.72 Z M 840 350.91 C 836.42 350.91 832.57 351.73 832.57 353.53 L 832.57 366.07 C 832.57 367.91 836.31 368.87 840 368.87 C 843.69 368.87 847.43 367.91 847.43 366.07 L 847.43 353.53 C 847.43 351.73 843.58 350.91 840 350.91 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 740 340 L 780 340 L 780 380 L 740 380 Z" fill="url(#mx-gradient-4d72f3-1-3334b9-1-s-0)" stroke="none" pointer-events="none"/><path d="M 766.88 368.49 C 764.98 370.03 760.98 370.84 757.15 370.84 C 753.32 370.84 749.31 370.03 747.41 368.49 L 747.41 371.59 L 747.41 371.59 C 747.41 373.14 751.41 374.87 757.15 374.87 C 762.88 374.87 766.88 373.14 766.88 371.59 Z M 766.88 362.58 L 768.03 362.58 L 768.03 362.58 C 768.03 363.27 767.68 363.92 767.01 364.51 C 767.82 365.23 768.03 365.93 768.03 366.43 C 768.03 366.44 768.03 366.44 768.03 366.44 L 768.03 371.59 L 768.03 371.59 C 768.03 374.45 762.42 376 757.15 376 C 751.88 376 746.29 374.46 746.27 371.61 C 746.27 371.61 746.26 371.61 746.26 371.6 L 746.26 366.43 C 746.26 366.43 746.26 366.43 746.26 366.43 C 746.27 365.93 746.47 365.22 747.28 364.51 C 746.48 363.79 746.27 363.09 746.26 362.6 L 746.26 362.6 C 746.26 362.59 746.26 362.59 746.26 362.59 L 746.26 357.42 C 746.26 357.42 746.26 357.42 746.26 357.41 C 746.27 356.91 746.47 356.21 747.29 355.5 C 746.48 354.78 746.27 354.08 746.26 353.58 L 746.26 353.58 C 746.26 353.58 746.26 353.58 746.26 353.58 L 746.26 348.41 C 746.26 348.41 746.26 348.4 746.26 348.4 C 746.27 345.54 751.88 344 757.15 344 C 760.12 344 762.98 344.47 764.99 345.3 L 764.56 346.35 C 762.68 345.58 759.98 345.13 757.15 345.13 C 751.41 345.13 747.41 346.86 747.41 348.41 C 747.41 349.96 751.41 351.69 757.15 351.69 C 757.3 351.69 757.45 351.69 757.61 351.68 L 757.65 352.81 C 757.48 352.82 757.32 352.82 757.15 352.82 C 753.32 352.82 749.31 352 747.41 350.46 L 747.41 353.57 L 747.41 353.57 L 747.41 353.58 C 747.41 354.17 748.02 354.69 748.53 355.02 C 750.07 356 752.82 356.67 755.9 356.81 L 755.84 357.94 C 752.73 357.8 750.01 357.16 748.25 356.17 C 747.82 356.49 747.41 356.93 747.41 357.42 C 747.41 358.97 751.41 360.7 757.15 360.7 C 757.71 360.7 758.27 360.68 758.81 360.64 L 758.89 361.77 C 758.32 361.81 757.74 361.83 757.15 361.83 C 753.32 361.83 749.31 361.02 747.41 359.47 L 747.41 362.58 L 747.41 362.58 C 747.41 363.19 748.02 363.7 748.53 364.03 C 750.29 365.16 753.59 365.85 757.15 365.85 L 757.4 365.85 L 757.4 366.99 L 757.15 366.99 C 753.54 366.99 750.25 366.32 748.25 365.18 C 747.82 365.51 747.41 365.94 747.41 366.43 C 747.41 367.98 751.41 369.71 757.15 369.71 C 762.88 369.71 766.88 367.99 766.88 366.44 L 766.88 366.43 L 766.88 366.43 C 766.88 365.94 766.47 365.5 766.04 365.18 C 765.76 365.34 765.46 365.49 765.12 365.63 L 764.69 364.58 C 765.1 364.41 765.46 364.23 765.76 364.04 C 766.27 363.7 766.88 363.17 766.88 362.58 Z M 771.78 354.3 L 768.58 354.3 C 768.39 354.3 768.21 354.2 768.1 354.05 C 768 353.89 767.98 353.69 768.05 353.52 L 769.99 348.65 L 762.62 348.65 L 759.19 355.45 L 762.84 355.45 C 763.02 355.45 763.19 355.54 763.3 355.68 C 763.4 355.83 763.44 356.02 763.38 356.19 L 760.13 366.34 Z M 773.53 354.12 L 759.25 368.88 C 759.14 368.99 758.99 369.05 758.84 369.05 C 758.74 369.05 758.63 369.03 758.54 368.97 C 758.32 368.84 758.21 368.57 758.29 368.32 L 762.05 356.59 L 758.26 356.59 C 758.07 356.59 757.88 356.48 757.78 356.32 C 757.67 356.15 757.66 355.94 757.75 355.77 L 761.75 347.83 C 761.85 347.64 762.05 347.52 762.26 347.52 L 770.84 347.52 C 771.02 347.52 771.2 347.61 771.31 347.77 C 771.42 347.92 771.44 348.12 771.37 348.29 L 769.42 353.16 L 773.12 353.16 C 773.35 353.16 773.56 353.3 773.65 353.51 C 773.74 353.72 773.69 353.96 773.53 354.12 Z M 748.24 371.81 C 749.05 372.27 750.07 372.65 751.27 372.95 L 751.55 371.85 C 750.46 371.58 749.51 371.23 748.8 370.83 Z M 751.27 363.89 L 751.55 362.79 C 750.46 362.51 749.51 362.16 748.8 361.76 L 748.24 362.75 C 749.05 363.2 750.07 363.59 751.27 363.89 Z M 748.24 353.68 L 748.8 352.69 C 749.51 353.09 750.46 353.45 751.55 353.72 L 751.27 354.82 C 750.07 354.52 749.05 354.13 748.24 353.68 Z" fill="#ffffff" stroke="none" pointer-events="none"/><rect x="740" y="300" width="160" height="80" fill="none" stroke="#d86613" stroke-width="2" pointer-events="none"/><rect x="920" y="140" width="160" height="40" fill="#ff0080" stroke="#ff0080" stroke-width="2" pointer-events="none"/><g fill="#ffffff" font-family="Rubik" pointer-events="none" text-anchor="middle" font-size="22px"><text x="999.5" y="173.5">production</text></g><rect x="920" y="260" width="160" height="40" fill="#6b0036" stroke="#ff0080" stroke-width="2" pointer-events="none"/><g fill="#F8E7F5" font-family="Rubik" font-style="italic" pointer-events="none" text-anchor="middle" font-size="16px"><text x="999.5" y="286">stable release</text></g><rect x="920" y="180" width="160" height="40" fill="#ff0080" stroke="#ff0080" stroke-width="2" pointer-events="none"/><g fill="#ffffff" font-family="Rubik" pointer-events="none" text-anchor="middle" font-size="16px" opacity="0.5"><text x="999.5" y="198.5">environment</text></g><rect x="920" y="220" width="160" height="40" fill="#6b0036" stroke="#ff0080" stroke-width="2" pointer-events="none"/><g fill="#F8E7F5" font-family="Rubik" font-weight="bold" font-style="italic" pointer-events="none" text-anchor="middle" font-size="16px"><text x="999.5" y="246">REQUIRED</text></g><path d="M 920 300 L 960 300 L 960 340 L 920 340 Z" fill="url(#mx-gradient-f78e04-1-d05c17-1-s-0)" stroke="none" pointer-events="none"/><path d="M 933.16 334.86 L 926.07 334.86 L 933.91 318.45 L 937.47 325.77 Z M 934.43 316.89 C 934.33 316.69 934.13 316.57 933.91 316.57 L 933.91 316.57 C 933.69 316.57 933.49 316.69 933.39 316.89 L 924.64 335.18 C 924.56 335.36 924.57 335.57 924.67 335.73 C 924.78 335.9 924.96 336 925.16 336 L 933.52 336 C 933.75 336 933.95 335.87 934.04 335.67 L 938.62 326.02 C 938.7 325.86 938.7 325.68 938.62 325.52 Z M 954.3 334.86 L 947.25 334.86 L 935.94 311.18 C 935.84 310.98 935.64 310.86 935.42 310.86 L 930.81 310.86 L 930.81 305.14 L 939.85 305.14 L 951.11 328.82 C 951.21 329.02 951.41 329.14 951.63 329.14 L 954.3 329.14 Z M 954.87 328 L 951.99 328 L 940.73 304.33 C 940.64 304.13 940.44 304 940.22 304 L 930.24 304 C 929.93 304 929.67 304.26 929.67 304.57 L 929.66 311.43 C 929.66 311.58 929.72 311.73 929.83 311.83 C 929.94 311.94 930.08 312 930.24 312 L 935.06 312 L 946.37 335.67 C 946.47 335.87 946.67 336 946.89 336 L 954.87 336 C 955.19 336 955.44 335.74 955.44 335.43 L 955.44 328.57 C 955.44 328.26 955.19 328 954.87 328 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 1000 300 L 1040 300 L 1040 340 L 1000 340 Z" fill="url(#mx-gradient-945df2-1-5a30b5-1-s-0)" stroke="none" pointer-events="none"/><path d="M 1016.61 328.94 L 1018.29 328.94 L 1018.29 327.79 L 1016.61 327.79 Z M 1019.43 328.94 L 1021.14 328.94 L 1021.14 327.79 L 1019.43 327.79 Z M 1012.58 305.53 L 1005.16 309.21 L 1005.16 332.11 L 1012.58 334.62 Z M 1013.72 312.82 L 1013.72 327.79 L 1015.43 327.79 L 1015.43 328.94 L 1013.72 328.94 L 1013.72 335.42 C 1013.72 335.61 1013.63 335.78 1013.48 335.89 C 1013.38 335.96 1013.27 336 1013.15 336 C 1013.09 336 1013.03 335.99 1012.97 335.97 L 1004.4 333.07 C 1004.17 333 1004.01 332.78 1004.01 332.53 L 1004.01 308.86 C 1004.01 308.64 1004.14 308.44 1004.33 308.34 L 1012.9 304.09 C 1013.07 304 1013.28 304.01 1013.45 304.12 C 1013.62 304.22 1013.72 304.41 1013.72 304.6 L 1013.72 311.67 L 1015.43 311.67 L 1015.43 312.82 Z M 1022.28 328.94 L 1024 328.94 L 1024 327.79 L 1022.28 327.79 Z M 1022.32 312.82 L 1024 312.82 L 1024 311.67 L 1022.32 311.67 Z M 1019.47 312.82 L 1021.14 312.82 L 1021.14 311.67 L 1019.47 311.67 Z M 1016.61 312.82 L 1018.29 312.82 L 1018.29 311.67 L 1016.61 311.67 Z M 1034.84 309.21 L 1027.42 305.53 L 1027.42 334.62 L 1034.84 332.11 Z M 1035.99 332.53 C 1035.99 332.78 1035.83 333 1035.6 333.07 L 1027.03 335.97 C 1026.97 335.99 1026.91 336 1026.85 336 C 1026.73 336 1026.62 335.96 1026.52 335.89 C 1026.37 335.78 1026.28 335.61 1026.28 335.42 L 1026.28 328.94 L 1025.18 328.94 L 1025.18 327.79 L 1026.28 327.79 L 1026.28 312.82 L 1025.18 312.82 L 1025.18 311.67 L 1026.28 311.67 L 1026.28 304.6 C 1026.28 304.41 1026.38 304.22 1026.55 304.12 C 1026.72 304.01 1026.93 304 1027.1 304.09 L 1035.67 308.34 C 1035.86 308.44 1035.99 308.64 1035.99 308.86 Z M 1021.68 316.48 L 1020.61 316.07 L 1017.75 323.55 L 1018.82 323.96 Z M 1025.54 320.13 C 1025.77 319.91 1025.77 319.54 1025.54 319.32 L 1023.26 317.02 L 1022.45 317.83 L 1024.33 319.73 L 1022.45 321.62 L 1023.26 322.44 Z M 1016.74 322.44 L 1014.46 320.13 C 1014.23 319.91 1014.23 319.54 1014.46 319.32 L 1016.74 317.02 L 1017.55 317.83 L 1015.67 319.73 L 1017.55 321.62 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 960 300 L 1000 300 L 1000 340 L 960 340 Z" fill="url(#mx-gradient-ff4f8b-1-bc1356-1-s-0)" stroke="none" pointer-events="none"/><path d="M 987.8 334.86 C 986.58 334.86 985.58 333.86 985.58 332.62 C 985.58 331.39 986.58 330.39 987.8 330.39 C 989.03 330.39 990.02 331.39 990.02 332.62 C 990.02 333.86 989.03 334.86 987.8 334.86 Z M 982.93 325.14 L 977.03 325.14 L 974.07 320 L 977.03 314.86 L 982.93 314.86 L 985.89 320 Z M 972.93 309.61 C 971.7 309.61 970.7 308.61 970.7 307.38 C 970.7 306.14 971.7 305.14 972.93 305.14 C 974.15 305.14 975.15 306.14 975.15 307.38 C 975.15 308.61 974.15 309.61 972.93 309.61 Z M 987.8 329.25 C 987.38 329.25 986.98 329.33 986.61 329.47 L 984.19 325.38 L 984.07 325.45 L 987.03 320.29 C 987.14 320.11 987.14 319.89 987.03 319.71 L 983.75 314 C 983.65 313.82 983.46 313.71 983.26 313.71 L 977.29 313.71 L 977.31 313.7 L 975.1 309.95 C 975.82 309.33 976.28 308.4 976.28 307.38 C 976.28 305.51 974.78 304 972.93 304 C 971.08 304 969.57 305.51 969.57 307.38 C 969.57 309.24 971.08 310.75 972.93 310.75 C 973.35 310.75 973.75 310.67 974.12 310.53 L 976.19 314.03 L 972.93 319.71 C 972.82 319.89 972.82 320.11 972.93 320.29 L 976.21 326 C 976.31 326.18 976.5 326.29 976.7 326.29 L 983.26 326.29 C 983.31 326.29 983.35 326.28 983.4 326.27 L 985.63 330.05 C 984.91 330.67 984.45 331.6 984.45 332.62 C 984.45 334.49 985.95 336 987.8 336 C 989.66 336 991.16 334.49 991.16 332.62 C 991.16 330.76 989.66 329.25 987.8 329.25 Z M 991.19 315.49 C 989.97 315.49 988.97 314.49 988.97 313.25 C 988.97 312.02 989.97 311.02 991.19 311.02 C 992.42 311.02 993.41 312.02 993.41 313.25 C 993.41 314.49 992.42 315.49 991.19 315.49 Z M 995.35 319.71 L 993.2 315.96 C 994.02 315.34 994.55 314.36 994.55 313.25 C 994.55 311.39 993.04 309.88 991.19 309.88 C 990.72 309.88 990.27 309.98 989.86 310.15 L 988.1 307.09 C 988 306.91 987.82 306.81 987.61 306.81 L 980.57 306.81 L 980.57 307.95 L 987.28 307.95 L 988.91 310.78 C 988.25 311.4 987.83 312.28 987.83 313.25 C 987.83 315.12 989.34 316.63 991.19 316.63 C 991.54 316.63 991.87 316.58 992.18 316.48 L 994.2 320 L 991.37 324.94 L 992.35 325.51 L 995.35 320.29 C 995.45 320.11 995.45 319.89 995.35 319.71 Z M 969.27 328.71 C 968.05 328.71 967.05 327.71 967.05 326.48 C 967.05 325.25 968.05 324.25 969.27 324.25 C 970.5 324.25 971.5 325.25 971.5 326.48 C 971.5 327.71 970.5 328.71 969.27 328.71 Z M 971.13 329.29 C 972.03 328.68 972.63 327.65 972.63 326.48 C 972.63 324.62 971.12 323.1 969.27 323.1 C 968.74 323.1 968.23 323.23 967.78 323.46 L 965.8 320 L 969.09 314.27 L 968.1 313.7 L 964.65 319.71 C 964.55 319.89 964.55 320.11 964.65 320.29 L 966.86 324.14 C 966.28 324.75 965.92 325.57 965.92 326.48 C 965.92 328.34 967.42 329.86 969.27 329.86 C 969.55 329.86 969.82 329.82 970.08 329.75 L 971.9 332.91 C 972 333.09 972.18 333.19 972.39 333.19 L 979.43 333.19 L 979.43 332.05 L 972.72 332.05 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 960 340 L 1000 340 L 1000 380 L 960 380 Z" fill="url(#mx-gradient-60a337-1-277116-1-s-0)" stroke="none" pointer-events="none"/><path d="M 991.94 361.65 L 992.16 360.11 C 994.18 361.32 994.21 361.82 994.21 361.83 C 994.2 361.84 993.86 362.13 991.94 361.65 Z M 990.83 361.34 C 987.33 360.29 982.46 358.05 980.49 357.12 C 980.49 357.11 980.49 357.11 980.49 357.1 C 980.49 356.34 979.88 355.72 979.12 355.72 C 978.36 355.72 977.75 356.34 977.75 357.1 C 977.75 357.85 978.36 358.47 979.12 358.47 C 979.45 358.47 979.75 358.35 979.99 358.15 C 982.31 359.25 987.14 361.45 990.67 362.49 L 989.27 372.32 C 989.27 372.35 989.27 372.37 989.27 372.4 C 989.27 373.27 985.43 374.86 979.17 374.86 C 972.84 374.86 968.97 373.27 968.97 372.4 C 968.97 372.37 968.97 372.35 968.97 372.32 L 966.05 351.06 C 968.57 352.8 973.99 353.71 979.18 353.71 C 984.35 353.71 989.76 352.8 992.29 351.07 Z M 965.75 348.84 C 965.79 348.09 970.11 345.14 979.18 345.14 C 988.24 345.14 992.56 348.09 992.6 348.84 L 992.6 349.1 C 992.11 350.79 986.51 352.57 979.18 352.57 C 971.83 352.57 966.23 350.78 965.75 349.09 Z M 993.75 348.86 C 993.75 346.88 988.07 344 979.18 344 C 970.28 344 964.6 346.88 964.6 348.86 L 964.66 349.29 L 967.83 372.44 C 967.9 375.03 974.81 376 979.17 376 C 984.59 376 990.34 374.76 990.41 372.45 L 991.78 362.79 C 992.54 362.97 993.17 363.07 993.67 363.07 C 994.35 363.07 994.8 362.9 995.08 362.57 C 995.31 362.3 995.4 361.97 995.33 361.62 C 995.18 360.83 994.24 359.98 992.33 358.89 L 993.69 349.31 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 1040 300 L 1080 300 L 1080 340 L 1040 340 Z" fill="url(#mx-gradient-f78e04-1-d05c17-1-s-0)" stroke="none" pointer-events="none"/><path d="M 1067.53 330.06 L 1067.53 327.02 L 1069.41 326.26 L 1069.41 329.3 Z M 1064.39 326.26 L 1066.27 327.02 L 1066.27 330.06 L 1064.39 329.3 Z M 1060.63 334.45 L 1060.63 331.41 L 1062.51 330.65 L 1062.51 333.69 Z M 1057.49 330.65 L 1059.37 331.41 L 1059.37 334.45 L 1057.49 333.69 Z M 1053.73 330.06 L 1053.73 327.02 L 1055.61 326.26 L 1055.61 329.3 Z M 1050.59 326.26 L 1052.47 327.02 L 1052.47 330.06 L 1050.59 329.3 Z M 1053.1 324.76 L 1054.55 325.34 L 1053.1 325.92 L 1051.65 325.34 Z M 1060 329.15 L 1061.45 329.73 L 1060 330.31 L 1058.55 329.73 Z M 1066.9 324.76 L 1068.35 325.34 L 1066.9 325.92 L 1065.45 325.34 Z M 1070.27 324.76 L 1067.13 323.5 C 1066.98 323.44 1066.82 323.44 1066.67 323.5 L 1063.53 324.76 C 1063.29 324.85 1063.14 325.08 1063.14 325.34 L 1063.14 329.05 L 1060.23 327.89 C 1060.08 327.83 1059.92 327.83 1059.77 327.89 L 1056.86 329.05 L 1056.86 325.34 C 1056.86 325.08 1056.71 324.85 1056.47 324.76 L 1053.33 323.5 C 1053.18 323.44 1053.02 323.44 1052.87 323.5 L 1049.73 324.76 C 1049.49 324.85 1049.34 325.08 1049.34 325.34 L 1049.34 329.73 C 1049.34 329.98 1049.49 330.21 1049.73 330.31 L 1052.87 331.57 C 1052.94 331.59 1053.02 331.61 1053.1 331.61 C 1053.18 331.61 1053.26 331.59 1053.33 331.57 L 1056.24 330.4 L 1056.24 334.12 C 1056.24 334.37 1056.39 334.61 1056.63 334.7 L 1059.77 335.96 C 1059.84 335.98 1059.92 336 1060 336 C 1060.08 336 1060.16 335.98 1060.23 335.96 L 1063.37 334.7 C 1063.61 334.61 1063.76 334.37 1063.76 334.12 L 1063.76 330.4 L 1066.67 331.57 C 1066.74 331.59 1066.82 331.61 1066.9 331.61 C 1066.98 331.61 1067.06 331.59 1067.13 331.57 L 1070.27 330.31 C 1070.51 330.21 1070.66 329.98 1070.66 329.73 L 1070.66 325.34 C 1070.66 325.08 1070.51 324.85 1070.27 324.76 Z M 1075.68 317.15 C 1075.68 320.81 1067.6 322.79 1060 322.79 C 1052.4 322.79 1044.32 320.81 1044.32 317.15 C 1044.32 315.4 1046.26 313.85 1049.79 312.81 L 1050.14 314.01 C 1047.33 314.85 1045.57 316.05 1045.57 317.15 C 1045.57 319.22 1051.5 321.54 1060 321.54 C 1068.5 321.54 1074.43 319.22 1074.43 317.15 C 1074.43 316.05 1072.67 314.85 1069.86 314.01 L 1070.21 312.81 C 1073.74 313.85 1075.68 315.4 1075.68 317.15 Z M 1060 305.31 L 1066.41 307.78 L 1060 310.24 L 1053.59 307.78 Z M 1066.64 317.71 C 1065.45 318.24 1063.47 318.86 1060.63 318.94 L 1060.63 311.34 L 1067.53 308.69 L 1067.53 316.34 C 1067.53 316.93 1067.18 317.47 1066.64 317.71 Z M 1052.47 316.34 L 1052.47 308.69 L 1059.37 311.34 L 1059.37 318.94 C 1056.53 318.86 1054.55 318.24 1053.36 317.71 C 1052.82 317.47 1052.47 316.93 1052.47 316.34 Z M 1052.85 318.86 C 1054.23 319.48 1056.59 320.21 1060 320.21 C 1063.41 320.21 1065.77 319.48 1067.15 318.86 C 1068.14 318.42 1068.78 317.43 1068.78 316.34 L 1068.78 307.78 C 1068.78 307.52 1068.62 307.28 1068.38 307.19 L 1060.23 304.06 C 1060.08 304 1059.92 304 1059.77 304.06 L 1051.62 307.19 C 1051.38 307.28 1051.22 307.52 1051.22 307.78 L 1051.22 316.34 C 1051.22 317.43 1051.86 318.42 1052.85 318.86 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 1040 340 L 1080 340 L 1080 380 L 1040 380 Z" fill="url(#mx-gradient-945df2-1-5a30b5-1-s-0)" stroke="none" pointer-events="none"/><path d="M 1068.64 366.93 C 1068.64 365.98 1067.87 365.21 1066.93 365.21 C 1065.98 365.21 1065.21 365.98 1065.21 366.93 C 1065.21 367.87 1065.98 368.64 1066.93 368.64 C 1067.87 368.64 1068.64 367.87 1068.64 366.93 Z M 1069.78 366.93 C 1069.78 368.5 1068.5 369.78 1066.93 369.78 C 1065.35 369.78 1064.07 368.5 1064.07 366.93 C 1064.07 365.35 1065.35 364.07 1066.93 364.07 C 1068.5 364.07 1069.78 365.35 1069.78 366.93 Z M 1054.51 358.68 C 1054.51 357.74 1053.74 356.97 1052.8 356.97 C 1051.85 356.97 1051.08 357.74 1051.08 358.68 C 1051.08 359.63 1051.85 360.4 1052.8 360.4 C 1053.74 360.4 1054.51 359.63 1054.51 358.68 Z M 1055.65 358.68 C 1055.65 360.26 1054.37 361.54 1052.8 361.54 C 1051.22 361.54 1049.94 360.26 1049.94 358.68 C 1049.94 357.11 1051.22 355.82 1052.8 355.82 C 1054.37 355.82 1055.65 357.11 1055.65 358.68 Z M 1059.85 349.72 C 1059.85 350.66 1060.61 351.43 1061.56 351.43 C 1062.51 351.43 1063.27 350.66 1063.27 349.72 C 1063.27 348.77 1062.51 348 1061.56 348 C 1060.61 348 1059.85 348.77 1059.85 349.72 Z M 1058.7 349.72 C 1058.7 348.14 1059.99 346.86 1061.56 346.86 C 1063.14 346.86 1064.42 348.14 1064.42 349.72 C 1064.42 351.29 1063.14 352.58 1061.56 352.58 C 1059.99 352.58 1058.7 351.29 1058.7 349.72 Z M 1074.86 360 C 1074.86 354.7 1072.02 349.8 1067.44 347.15 C 1066.61 347.31 1065.82 347.54 1064.83 347.9 L 1064.44 346.82 C 1064.96 346.64 1065.42 346.49 1065.87 346.36 C 1064.03 345.56 1062.03 345.14 1060 345.14 C 1059.03 345.14 1058.09 345.24 1057.16 345.42 C 1057.83 345.82 1058.43 346.21 1059 346.65 L 1058.31 347.56 C 1057.5 346.94 1056.65 346.42 1055.54 345.83 C 1049.93 347.6 1045.89 352.55 1045.25 358.36 C 1046.42 358.12 1047.55 357.99 1048.81 357.96 L 1048.84 359.1 C 1047.52 359.13 1046.39 359.27 1045.16 359.55 C 1045.15 359.7 1045.14 359.85 1045.14 360 C 1045.14 364.95 1047.59 369.51 1051.62 372.26 C 1050.9 370.12 1050.54 368.11 1050.54 366.14 C 1050.54 365.02 1050.74 364.1 1050.94 363.12 C 1050.99 362.9 1051.04 362.67 1051.08 362.43 L 1052.2 362.65 C 1052.16 362.89 1052.11 363.13 1052.06 363.36 C 1051.86 364.31 1051.69 365.14 1051.69 366.14 C 1051.69 368.37 1052.18 370.68 1053.17 373.19 C 1055.3 374.29 1057.59 374.86 1060 374.86 C 1061.57 374.86 1063.11 374.61 1064.58 374.12 C 1065.15 372.99 1065.58 371.92 1065.94 370.69 L 1067.03 371 C 1066.77 371.9 1066.48 372.72 1066.12 373.53 C 1067.04 373.11 1067.91 372.6 1068.73 372 C 1068.54 371.52 1068.32 371.04 1068.09 370.57 L 1069.11 370.06 C 1069.31 370.46 1069.49 370.86 1069.67 371.27 C 1072.97 368.44 1074.86 364.38 1074.86 360 Z M 1076 360 C 1076 364.99 1073.73 369.6 1069.78 372.66 C 1068.81 373.42 1067.74 374.05 1066.62 374.56 C 1066.15 374.77 1065.66 374.97 1065.16 375.14 C 1063.52 375.71 1061.78 376 1060 376 C 1057.37 376 1054.76 375.35 1052.45 374.11 C 1047.24 371.32 1044 365.91 1044 360 C 1044 359.61 1044.01 359.31 1044.03 359.03 C 1044.42 352.36 1049 346.58 1055.43 344.67 C 1056.89 344.22 1058.43 344 1060 344 C 1062.75 344 1065.45 344.71 1067.82 346.05 C 1072.86 348.87 1076 354.22 1076 360 Z M 1058.47 351.69 L 1057.71 350.83 C 1056.43 351.95 1055.44 353.14 1054.27 354.93 L 1055.23 355.55 C 1056.33 353.85 1057.27 352.74 1058.47 351.69 Z M 1056.73 359.1 L 1056.36 360.18 C 1058.98 361.08 1061.27 362.52 1063.56 364.71 L 1064.35 363.88 C 1061.94 361.58 1059.51 360.06 1056.73 359.1 Z M 1064.37 352.38 C 1066.51 355.65 1067.72 359.24 1067.96 363.05 L 1066.82 363.12 C 1066.59 359.51 1065.45 356.11 1063.41 353.01 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 1000 340 L 1040 340 L 1040 380 L 1000 380 Z" fill="url(#mx-gradient-4d72f3-1-3334b9-1-s-0)" stroke="none" pointer-events="none"/><path d="M 1005.95 345.14 L 1011.26 350.45 L 1010.45 351.26 L 1005.14 345.95 L 1005.14 350.29 L 1004 350.29 L 1004 344.57 C 1004 344.26 1004.26 344 1004.57 344 L 1010.29 344 L 1010.29 345.14 Z M 1036 344.57 L 1036 350.29 L 1034.86 350.29 L 1034.86 345.95 L 1029.55 351.26 L 1028.74 350.45 L 1034.05 345.14 L 1029.71 345.14 L 1029.71 344 L 1035.43 344 C 1035.74 344 1036 344.26 1036 344.57 Z M 1034.86 369.71 L 1036 369.71 L 1036 375.43 C 1036 375.74 1035.74 376 1035.43 376 L 1029.71 376 L 1029.71 374.86 L 1034.05 374.86 L 1028.74 369.55 L 1029.55 368.74 L 1034.86 374.05 Z M 1034.57 359.55 C 1034.57 357.65 1032.38 355.78 1028.71 354.54 L 1029.08 353.46 C 1033.3 354.88 1035.71 357.1 1035.71 359.55 C 1035.71 362 1033.3 364.22 1029.08 365.65 L 1028.71 364.56 C 1032.38 363.32 1034.57 361.45 1034.57 359.55 Z M 1005.46 359.55 C 1005.46 361.37 1007.51 363.19 1010.94 364.43 L 1010.56 365.51 C 1006.59 364.07 1004.32 361.9 1004.32 359.55 C 1004.32 357.2 1006.59 355.03 1010.56 353.6 L 1010.94 354.67 C 1007.51 355.91 1005.46 357.73 1005.46 359.55 Z M 1011.26 369.55 L 1005.95 374.86 L 1010.29 374.86 L 1010.29 376 L 1004.57 376 C 1004.26 376 1004 375.74 1004 375.43 L 1004 369.71 L 1005.14 369.71 L 1005.14 374.05 L 1010.45 368.74 Z M 1020 355.02 C 1015.92 355.02 1013.71 353.97 1013.71 353.53 C 1013.71 353.1 1015.92 352.05 1020 352.05 C 1024.08 352.05 1026.29 353.1 1026.29 353.53 C 1026.29 353.97 1024.08 355.02 1020 355.02 Z M 1020.02 359.45 C 1016.11 359.45 1013.71 358.38 1013.71 357.8 L 1013.71 355.02 C 1015.12 355.8 1017.62 356.16 1020 356.16 C 1022.38 356.16 1024.88 355.8 1026.29 355.02 L 1026.29 357.8 C 1026.29 358.38 1023.91 359.45 1020.02 359.45 Z M 1020.02 363.81 C 1016.11 363.81 1013.71 362.74 1013.71 362.16 L 1013.71 359.35 C 1015.1 360.17 1017.57 360.59 1020.02 360.59 C 1022.45 360.59 1024.9 360.17 1026.29 359.35 L 1026.29 362.16 C 1026.29 362.74 1023.91 363.81 1020.02 363.81 Z M 1020 367.72 C 1015.93 367.72 1013.71 366.63 1013.71 366.07 L 1013.71 363.71 C 1015.1 364.53 1017.57 364.95 1020.02 364.95 C 1022.45 364.95 1024.9 364.53 1026.29 363.72 L 1026.29 366.07 C 1026.29 366.63 1024.07 367.72 1020 367.72 Z M 1020 350.91 C 1016.42 350.91 1012.57 351.73 1012.57 353.53 L 1012.57 366.07 C 1012.57 367.91 1016.31 368.87 1020 368.87 C 1023.69 368.87 1027.43 367.91 1027.43 366.07 L 1027.43 353.53 C 1027.43 351.73 1023.58 350.91 1020 350.91 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 920 340 L 960 340 L 960 380 L 920 380 Z" fill="url(#mx-gradient-4d72f3-1-3334b9-1-s-0)" stroke="none" pointer-events="none"/><path d="M 946.88 368.49 C 944.98 370.03 940.98 370.84 937.15 370.84 C 933.32 370.84 929.31 370.03 927.41 368.49 L 927.41 371.59 L 927.41 371.59 C 927.41 373.14 931.41 374.87 937.15 374.87 C 942.88 374.87 946.88 373.14 946.88 371.59 Z M 946.88 362.58 L 948.03 362.58 L 948.03 362.58 C 948.03 363.27 947.68 363.92 947.01 364.51 C 947.82 365.23 948.03 365.93 948.03 366.43 C 948.03 366.44 948.03 366.44 948.03 366.44 L 948.03 371.59 L 948.03 371.59 C 948.03 374.45 942.42 376 937.15 376 C 931.88 376 926.29 374.46 926.27 371.61 C 926.27 371.61 926.26 371.61 926.26 371.6 L 926.26 366.43 C 926.26 366.43 926.26 366.43 926.26 366.43 C 926.27 365.93 926.47 365.22 927.28 364.51 C 926.48 363.79 926.27 363.09 926.26 362.6 L 926.26 362.6 C 926.26 362.59 926.26 362.59 926.26 362.59 L 926.26 357.42 C 926.26 357.42 926.26 357.42 926.26 357.41 C 926.27 356.91 926.47 356.21 927.29 355.5 C 926.48 354.78 926.27 354.08 926.26 353.58 L 926.26 353.58 C 926.26 353.58 926.26 353.58 926.26 353.58 L 926.26 348.41 C 926.26 348.41 926.26 348.4 926.26 348.4 C 926.27 345.54 931.88 344 937.15 344 C 940.12 344 942.98 344.47 944.99 345.3 L 944.56 346.35 C 942.68 345.58 939.98 345.13 937.15 345.13 C 931.41 345.13 927.41 346.86 927.41 348.41 C 927.41 349.96 931.41 351.69 937.15 351.69 C 937.3 351.69 937.45 351.69 937.61 351.68 L 937.65 352.81 C 937.48 352.82 937.32 352.82 937.15 352.82 C 933.32 352.82 929.31 352 927.41 350.46 L 927.41 353.57 L 927.41 353.57 L 927.41 353.58 C 927.41 354.17 928.02 354.69 928.53 355.02 C 930.07 356 932.82 356.67 935.9 356.81 L 935.84 357.94 C 932.73 357.8 930.01 357.16 928.25 356.17 C 927.82 356.49 927.41 356.93 927.41 357.42 C 927.41 358.97 931.41 360.7 937.15 360.7 C 937.71 360.7 938.27 360.68 938.81 360.64 L 938.89 361.77 C 938.32 361.81 937.74 361.83 937.15 361.83 C 933.32 361.83 929.31 361.02 927.41 359.47 L 927.41 362.58 L 927.41 362.58 C 927.41 363.19 928.02 363.7 928.53 364.03 C 930.29 365.16 933.59 365.85 937.15 365.85 L 937.4 365.85 L 937.4 366.99 L 937.15 366.99 C 933.54 366.99 930.25 366.32 928.25 365.18 C 927.82 365.51 927.41 365.94 927.41 366.43 C 927.41 367.98 931.41 369.71 937.15 369.71 C 942.88 369.71 946.88 367.99 946.88 366.44 L 946.88 366.43 L 946.88 366.43 C 946.88 365.94 946.47 365.5 946.04 365.18 C 945.76 365.34 945.46 365.49 945.12 365.63 L 944.69 364.58 C 945.1 364.41 945.46 364.23 945.76 364.04 C 946.27 363.7 946.88 363.17 946.88 362.58 Z M 951.78 354.3 L 948.58 354.3 C 948.39 354.3 948.21 354.2 948.1 354.05 C 948 353.89 947.98 353.69 948.05 353.52 L 949.99 348.65 L 942.62 348.65 L 939.19 355.45 L 942.84 355.45 C 943.02 355.45 943.19 355.54 943.3 355.68 C 943.4 355.83 943.44 356.02 943.38 356.19 L 940.13 366.34 Z M 953.53 354.12 L 939.25 368.88 C 939.14 368.99 938.99 369.05 938.84 369.05 C 938.74 369.05 938.63 369.03 938.54 368.97 C 938.32 368.84 938.21 368.57 938.29 368.32 L 942.05 356.59 L 938.26 356.59 C 938.07 356.59 937.88 356.48 937.78 356.32 C 937.67 356.15 937.66 355.94 937.75 355.77 L 941.75 347.83 C 941.85 347.64 942.05 347.52 942.26 347.52 L 950.84 347.52 C 951.02 347.52 951.2 347.61 951.31 347.77 C 951.42 347.92 951.44 348.12 951.37 348.29 L 949.42 353.16 L 953.12 353.16 C 953.35 353.16 953.56 353.3 953.65 353.51 C 953.74 353.72 953.69 353.96 953.53 354.12 Z M 928.24 371.81 C 929.05 372.27 930.07 372.65 931.27 372.95 L 931.55 371.85 C 930.46 371.58 929.51 371.23 928.8 370.83 Z M 931.27 363.89 L 931.55 362.79 C 930.46 362.51 929.51 362.16 928.8 361.76 L 928.24 362.75 C 929.05 363.2 930.07 363.59 931.27 363.89 Z M 928.24 353.68 L 928.8 352.69 C 929.51 353.09 930.46 353.45 931.55 353.72 L 931.27 354.82 C 930.07 354.52 929.05 354.13 928.24 353.68 Z" fill="#ffffff" stroke="none" pointer-events="none"/><rect x="920" y="300" width="160" height="80" fill="none" stroke="#ff0080" stroke-width="2" pointer-events="none"/><path d="M 200 640 L 1073.63 640" fill="none" stroke="#e5ccff" stroke-miterlimit="10" pointer-events="none"/><path d="M 200 636 L 200 644" fill="none" stroke="#e5ccff" stroke-miterlimit="10" pointer-events="none"/><path d="M 1078.88 640 L 1071.88 643.5 L 1073.63 640 L 1071.88 636.5 Z" fill="#e5ccff" stroke="#e5ccff" stroke-miterlimit="10" pointer-events="none"/><g fill="#E5CCFF" font-family="Rubik" font-style="italic" pointer-events="none" font-size="16px"><text x="201.5" y="677">Environment Deployment Pipeline Order</text></g><path d="M 0 40 L 1180 40" fill="none" stroke="#90a6c2" stroke-miterlimit="10" pointer-events="none"/><g fill="#90A6C2" font-family="Rubik" pointer-events="none" font-size="23px"><text x="1.5" y="25">1x Accounts</text></g><path d="M 20 300 L 60 300 L 60 340 L 20 340 Z" fill="url(#mx-gradient-f78e04-1-d05c17-1-s-0)" stroke="none" pointer-events="none"/><path d="M 33.16 334.86 L 26.07 334.86 L 33.91 318.45 L 37.47 325.77 Z M 34.43 316.89 C 34.33 316.69 34.13 316.57 33.91 316.57 L 33.91 316.57 C 33.69 316.57 33.49 316.69 33.39 316.89 L 24.64 335.18 C 24.56 335.36 24.57 335.57 24.67 335.73 C 24.78 335.9 24.96 336 25.16 336 L 33.52 336 C 33.75 336 33.95 335.87 34.04 335.67 L 38.62 326.02 C 38.7 325.86 38.7 325.68 38.62 325.52 Z M 54.3 334.86 L 47.25 334.86 L 35.94 311.18 C 35.84 310.98 35.64 310.86 35.42 310.86 L 30.81 310.86 L 30.81 305.14 L 39.85 305.14 L 51.11 328.82 C 51.21 329.02 51.41 329.14 51.63 329.14 L 54.3 329.14 Z M 54.87 328 L 51.99 328 L 40.73 304.33 C 40.64 304.13 40.44 304 40.22 304 L 30.24 304 C 29.93 304 29.67 304.26 29.67 304.57 L 29.66 311.43 C 29.66 311.58 29.72 311.73 29.83 311.83 C 29.94 311.94 30.08 312 30.24 312 L 35.06 312 L 46.37 335.67 C 46.47 335.87 46.67 336 46.89 336 L 54.87 336 C 55.19 336 55.44 335.74 55.44 335.43 L 55.44 328.57 C 55.44 328.26 55.19 328 54.87 328 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 100 300 L 140 300 L 140 340 L 100 340 Z" fill="url(#mx-gradient-945df2-1-5a30b5-1-s-0)" stroke="none" pointer-events="none"/><path d="M 116.61 328.94 L 118.29 328.94 L 118.29 327.79 L 116.61 327.79 Z M 119.43 328.94 L 121.14 328.94 L 121.14 327.79 L 119.43 327.79 Z M 112.58 305.53 L 105.16 309.21 L 105.16 332.11 L 112.58 334.62 Z M 113.72 312.82 L 113.72 327.79 L 115.43 327.79 L 115.43 328.94 L 113.72 328.94 L 113.72 335.42 C 113.72 335.61 113.63 335.78 113.48 335.89 C 113.38 335.96 113.27 336 113.15 336 C 113.09 336 113.03 335.99 112.97 335.97 L 104.4 333.07 C 104.17 333 104.01 332.78 104.01 332.53 L 104.01 308.86 C 104.01 308.64 104.14 308.44 104.33 308.34 L 112.9 304.09 C 113.07 304 113.28 304.01 113.45 304.12 C 113.62 304.22 113.72 304.41 113.72 304.6 L 113.72 311.67 L 115.43 311.67 L 115.43 312.82 Z M 122.28 328.94 L 124 328.94 L 124 327.79 L 122.28 327.79 Z M 122.32 312.82 L 124 312.82 L 124 311.67 L 122.32 311.67 Z M 119.47 312.82 L 121.14 312.82 L 121.14 311.67 L 119.47 311.67 Z M 116.61 312.82 L 118.29 312.82 L 118.29 311.67 L 116.61 311.67 Z M 134.84 309.21 L 127.42 305.53 L 127.42 334.62 L 134.84 332.11 Z M 135.99 332.53 C 135.99 332.78 135.83 333 135.6 333.07 L 127.03 335.97 C 126.97 335.99 126.91 336 126.85 336 C 126.73 336 126.62 335.96 126.52 335.89 C 126.37 335.78 126.28 335.61 126.28 335.42 L 126.28 328.94 L 125.18 328.94 L 125.18 327.79 L 126.28 327.79 L 126.28 312.82 L 125.18 312.82 L 125.18 311.67 L 126.28 311.67 L 126.28 304.6 C 126.28 304.41 126.38 304.22 126.55 304.12 C 126.72 304.01 126.93 304 127.1 304.09 L 135.67 308.34 C 135.86 308.44 135.99 308.64 135.99 308.86 Z M 121.68 316.48 L 120.61 316.07 L 117.75 323.55 L 118.82 323.96 Z M 125.54 320.13 C 125.77 319.91 125.77 319.54 125.54 319.32 L 123.26 317.02 L 122.45 317.83 L 124.33 319.73 L 122.45 321.62 L 123.26 322.44 Z M 116.74 322.44 L 114.46 320.13 C 114.23 319.91 114.23 319.54 114.46 319.32 L 116.74 317.02 L 117.55 317.83 L 115.67 319.73 L 117.55 321.62 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 60 300 L 100 300 L 100 340 L 60 340 Z" fill="url(#mx-gradient-ff4f8b-1-bc1356-1-s-0)" stroke="none" pointer-events="none"/><path d="M 87.8 334.86 C 86.58 334.86 85.58 333.86 85.58 332.62 C 85.58 331.39 86.58 330.39 87.8 330.39 C 89.03 330.39 90.02 331.39 90.02 332.62 C 90.02 333.86 89.03 334.86 87.8 334.86 Z M 82.93 325.14 L 77.03 325.14 L 74.07 320 L 77.03 314.86 L 82.93 314.86 L 85.89 320 Z M 72.93 309.61 C 71.7 309.61 70.7 308.61 70.7 307.38 C 70.7 306.14 71.7 305.14 72.93 305.14 C 74.15 305.14 75.15 306.14 75.15 307.38 C 75.15 308.61 74.15 309.61 72.93 309.61 Z M 87.8 329.25 C 87.38 329.25 86.98 329.33 86.61 329.47 L 84.19 325.38 L 84.07 325.45 L 87.03 320.29 C 87.14 320.11 87.14 319.89 87.03 319.71 L 83.75 314 C 83.65 313.82 83.46 313.71 83.26 313.71 L 77.29 313.71 L 77.31 313.7 L 75.1 309.95 C 75.82 309.33 76.28 308.4 76.28 307.38 C 76.28 305.51 74.78 304 72.93 304 C 71.08 304 69.57 305.51 69.57 307.38 C 69.57 309.24 71.08 310.75 72.93 310.75 C 73.35 310.75 73.75 310.67 74.12 310.53 L 76.19 314.03 L 72.93 319.71 C 72.82 319.89 72.82 320.11 72.93 320.29 L 76.21 326 C 76.31 326.18 76.5 326.29 76.7 326.29 L 83.26 326.29 C 83.31 326.29 83.35 326.28 83.4 326.27 L 85.63 330.05 C 84.91 330.67 84.45 331.6 84.45 332.62 C 84.45 334.49 85.95 336 87.8 336 C 89.66 336 91.16 334.49 91.16 332.62 C 91.16 330.76 89.66 329.25 87.8 329.25 Z M 91.19 315.49 C 89.97 315.49 88.97 314.49 88.97 313.25 C 88.97 312.02 89.97 311.02 91.19 311.02 C 92.42 311.02 93.41 312.02 93.41 313.25 C 93.41 314.49 92.42 315.49 91.19 315.49 Z M 95.35 319.71 L 93.2 315.96 C 94.02 315.34 94.55 314.36 94.55 313.25 C 94.55 311.39 93.04 309.88 91.19 309.88 C 90.72 309.88 90.27 309.98 89.86 310.15 L 88.1 307.09 C 88 306.91 87.82 306.81 87.61 306.81 L 80.57 306.81 L 80.57 307.95 L 87.28 307.95 L 88.91 310.78 C 88.25 311.4 87.83 312.28 87.83 313.25 C 87.83 315.12 89.34 316.63 91.19 316.63 C 91.54 316.63 91.87 316.58 92.18 316.48 L 94.2 320 L 91.37 324.94 L 92.35 325.51 L 95.35 320.29 C 95.45 320.11 95.45 319.89 95.35 319.71 Z M 69.27 328.71 C 68.05 328.71 67.05 327.71 67.05 326.48 C 67.05 325.25 68.05 324.25 69.27 324.25 C 70.5 324.25 71.5 325.25 71.5 326.48 C 71.5 327.71 70.5 328.71 69.27 328.71 Z M 71.13 329.29 C 72.03 328.68 72.63 327.65 72.63 326.48 C 72.63 324.62 71.12 323.1 69.27 323.1 C 68.74 323.1 68.23 323.23 67.78 323.46 L 65.8 320 L 69.09 314.27 L 68.1 313.7 L 64.65 319.71 C 64.55 319.89 64.55 320.11 64.65 320.29 L 66.86 324.14 C 66.28 324.75 65.92 325.57 65.92 326.48 C 65.92 328.34 67.42 329.86 69.27 329.86 C 69.55 329.86 69.82 329.82 70.08 329.75 L 71.9 332.91 C 72 333.09 72.18 333.19 72.39 333.19 L 79.43 333.19 L 79.43 332.05 L 72.72 332.05 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 60 340 L 100 340 L 100 380 L 60 380 Z" fill="url(#mx-gradient-60a337-1-277116-1-s-0)" stroke="none" pointer-events="none"/><path d="M 91.94 361.65 L 92.16 360.11 C 94.18 361.32 94.21 361.82 94.21 361.83 C 94.2 361.84 93.86 362.13 91.94 361.65 Z M 90.83 361.34 C 87.33 360.29 82.46 358.05 80.49 357.12 C 80.49 357.11 80.49 357.11 80.49 357.1 C 80.49 356.34 79.88 355.72 79.12 355.72 C 78.36 355.72 77.75 356.34 77.75 357.1 C 77.75 357.85 78.36 358.47 79.12 358.47 C 79.45 358.47 79.75 358.35 79.99 358.15 C 82.31 359.25 87.14 361.45 90.67 362.49 L 89.27 372.32 C 89.27 372.35 89.27 372.37 89.27 372.4 C 89.27 373.27 85.43 374.86 79.17 374.86 C 72.84 374.86 68.97 373.27 68.97 372.4 C 68.97 372.37 68.97 372.35 68.97 372.32 L 66.05 351.06 C 68.57 352.8 73.99 353.71 79.18 353.71 C 84.35 353.71 89.76 352.8 92.29 351.07 Z M 65.75 348.84 C 65.79 348.09 70.11 345.14 79.18 345.14 C 88.24 345.14 92.56 348.09 92.6 348.84 L 92.6 349.1 C 92.11 350.79 86.51 352.57 79.18 352.57 C 71.83 352.57 66.23 350.78 65.75 349.09 Z M 93.75 348.86 C 93.75 346.88 88.07 344 79.18 344 C 70.28 344 64.6 346.88 64.6 348.86 L 64.66 349.29 L 67.83 372.44 C 67.9 375.03 74.81 376 79.17 376 C 84.59 376 90.34 374.76 90.41 372.45 L 91.78 362.79 C 92.54 362.97 93.17 363.07 93.67 363.07 C 94.35 363.07 94.8 362.9 95.08 362.57 C 95.31 362.3 95.4 361.97 95.33 361.62 C 95.18 360.83 94.24 359.98 92.33 358.89 L 93.69 349.31 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 140 300 L 180 300 L 180 340 L 140 340 Z" fill="url(#mx-gradient-f78e04-1-d05c17-1-s-0)" stroke="none" pointer-events="none"/><path d="M 167.53 330.06 L 167.53 327.02 L 169.41 326.26 L 169.41 329.3 Z M 164.39 326.26 L 166.27 327.02 L 166.27 330.06 L 164.39 329.3 Z M 160.63 334.45 L 160.63 331.41 L 162.51 330.65 L 162.51 333.69 Z M 157.49 330.65 L 159.37 331.41 L 159.37 334.45 L 157.49 333.69 Z M 153.73 330.06 L 153.73 327.02 L 155.61 326.26 L 155.61 329.3 Z M 150.59 326.26 L 152.47 327.02 L 152.47 330.06 L 150.59 329.3 Z M 153.1 324.76 L 154.55 325.34 L 153.1 325.92 L 151.65 325.34 Z M 160 329.15 L 161.45 329.73 L 160 330.31 L 158.55 329.73 Z M 166.9 324.76 L 168.35 325.34 L 166.9 325.92 L 165.45 325.34 Z M 170.27 324.76 L 167.13 323.5 C 166.98 323.44 166.82 323.44 166.67 323.5 L 163.53 324.76 C 163.29 324.85 163.14 325.08 163.14 325.34 L 163.14 329.05 L 160.23 327.89 C 160.08 327.83 159.92 327.83 159.77 327.89 L 156.86 329.05 L 156.86 325.34 C 156.86 325.08 156.71 324.85 156.47 324.76 L 153.33 323.5 C 153.18 323.44 153.02 323.44 152.87 323.5 L 149.73 324.76 C 149.49 324.85 149.34 325.08 149.34 325.34 L 149.34 329.73 C 149.34 329.98 149.49 330.21 149.73 330.31 L 152.87 331.57 C 152.94 331.59 153.02 331.61 153.1 331.61 C 153.18 331.61 153.26 331.59 153.33 331.57 L 156.24 330.4 L 156.24 334.12 C 156.24 334.37 156.39 334.61 156.63 334.7 L 159.77 335.96 C 159.84 335.98 159.92 336 160 336 C 160.08 336 160.16 335.98 160.23 335.96 L 163.37 334.7 C 163.61 334.61 163.76 334.37 163.76 334.12 L 163.76 330.4 L 166.67 331.57 C 166.74 331.59 166.82 331.61 166.9 331.61 C 166.98 331.61 167.06 331.59 167.13 331.57 L 170.27 330.31 C 170.51 330.21 170.66 329.98 170.66 329.73 L 170.66 325.34 C 170.66 325.08 170.51 324.85 170.27 324.76 Z M 175.68 317.15 C 175.68 320.81 167.6 322.79 160 322.79 C 152.4 322.79 144.32 320.81 144.32 317.15 C 144.32 315.4 146.26 313.85 149.79 312.81 L 150.14 314.01 C 147.33 314.85 145.57 316.05 145.57 317.15 C 145.57 319.22 151.5 321.54 160 321.54 C 168.5 321.54 174.43 319.22 174.43 317.15 C 174.43 316.05 172.67 314.85 169.86 314.01 L 170.21 312.81 C 173.74 313.85 175.68 315.4 175.68 317.15 Z M 160 305.31 L 166.41 307.78 L 160 310.24 L 153.59 307.78 Z M 166.64 317.71 C 165.45 318.24 163.47 318.86 160.63 318.94 L 160.63 311.34 L 167.53 308.69 L 167.53 316.34 C 167.53 316.93 167.18 317.47 166.64 317.71 Z M 152.47 316.34 L 152.47 308.69 L 159.37 311.34 L 159.37 318.94 C 156.53 318.86 154.55 318.24 153.36 317.71 C 152.82 317.47 152.47 316.93 152.47 316.34 Z M 152.85 318.86 C 154.23 319.48 156.59 320.21 160 320.21 C 163.41 320.21 165.77 319.48 167.15 318.86 C 168.14 318.42 168.78 317.43 168.78 316.34 L 168.78 307.78 C 168.78 307.52 168.62 307.28 168.38 307.19 L 160.23 304.06 C 160.08 304 159.92 304 159.77 304.06 L 151.62 307.19 C 151.38 307.28 151.22 307.52 151.22 307.78 L 151.22 316.34 C 151.22 317.43 151.86 318.42 152.85 318.86 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 140 340 L 180 340 L 180 380 L 140 380 Z" fill="url(#mx-gradient-945df2-1-5a30b5-1-s-0)" stroke="none" pointer-events="none"/><path d="M 168.64 366.93 C 168.64 365.98 167.87 365.21 166.93 365.21 C 165.98 365.21 165.21 365.98 165.21 366.93 C 165.21 367.87 165.98 368.64 166.93 368.64 C 167.87 368.64 168.64 367.87 168.64 366.93 Z M 169.78 366.93 C 169.78 368.5 168.5 369.78 166.93 369.78 C 165.35 369.78 164.07 368.5 164.07 366.93 C 164.07 365.35 165.35 364.07 166.93 364.07 C 168.5 364.07 169.78 365.35 169.78 366.93 Z M 154.51 358.68 C 154.51 357.74 153.74 356.97 152.8 356.97 C 151.85 356.97 151.08 357.74 151.08 358.68 C 151.08 359.63 151.85 360.4 152.8 360.4 C 153.74 360.4 154.51 359.63 154.51 358.68 Z M 155.65 358.68 C 155.65 360.26 154.37 361.54 152.8 361.54 C 151.22 361.54 149.94 360.26 149.94 358.68 C 149.94 357.11 151.22 355.82 152.8 355.82 C 154.37 355.82 155.65 357.11 155.65 358.68 Z M 159.85 349.72 C 159.85 350.66 160.61 351.43 161.56 351.43 C 162.51 351.43 163.27 350.66 163.27 349.72 C 163.27 348.77 162.51 348 161.56 348 C 160.61 348 159.85 348.77 159.85 349.72 Z M 158.7 349.72 C 158.7 348.14 159.99 346.86 161.56 346.86 C 163.14 346.86 164.42 348.14 164.42 349.72 C 164.42 351.29 163.14 352.58 161.56 352.58 C 159.99 352.58 158.7 351.29 158.7 349.72 Z M 174.86 360 C 174.86 354.7 172.02 349.8 167.44 347.15 C 166.61 347.31 165.82 347.54 164.83 347.9 L 164.44 346.82 C 164.96 346.64 165.42 346.49 165.87 346.36 C 164.03 345.56 162.03 345.14 160 345.14 C 159.03 345.14 158.09 345.24 157.16 345.42 C 157.83 345.82 158.43 346.21 159 346.65 L 158.31 347.56 C 157.5 346.94 156.65 346.42 155.54 345.83 C 149.93 347.6 145.89 352.55 145.25 358.36 C 146.42 358.12 147.55 357.99 148.81 357.96 L 148.84 359.1 C 147.52 359.13 146.39 359.27 145.16 359.55 C 145.15 359.7 145.14 359.85 145.14 360 C 145.14 364.95 147.59 369.51 151.62 372.26 C 150.9 370.12 150.54 368.11 150.54 366.14 C 150.54 365.02 150.74 364.1 150.94 363.12 C 150.99 362.9 151.04 362.67 151.08 362.43 L 152.2 362.65 C 152.16 362.89 152.11 363.13 152.06 363.36 C 151.86 364.31 151.69 365.14 151.69 366.14 C 151.69 368.37 152.18 370.68 153.17 373.19 C 155.3 374.29 157.59 374.86 160 374.86 C 161.57 374.86 163.11 374.61 164.58 374.12 C 165.15 372.99 165.58 371.92 165.94 370.69 L 167.03 371 C 166.77 371.9 166.48 372.72 166.12 373.53 C 167.04 373.11 167.91 372.6 168.73 372 C 168.54 371.52 168.32 371.04 168.09 370.57 L 169.11 370.06 C 169.31 370.46 169.49 370.86 169.67 371.27 C 172.97 368.44 174.86 364.38 174.86 360 Z M 176 360 C 176 364.99 173.73 369.6 169.78 372.66 C 168.81 373.42 167.74 374.05 166.62 374.56 C 166.15 374.77 165.66 374.97 165.16 375.14 C 163.52 375.71 161.78 376 160 376 C 157.37 376 154.76 375.35 152.45 374.11 C 147.24 371.32 144 365.91 144 360 C 144 359.61 144.01 359.31 144.03 359.03 C 144.42 352.36 149 346.58 155.43 344.67 C 156.89 344.22 158.43 344 160 344 C 162.75 344 165.45 344.71 167.82 346.05 C 172.86 348.87 176 354.22 176 360 Z M 158.47 351.69 L 157.71 350.83 C 156.43 351.95 155.44 353.14 154.27 354.93 L 155.23 355.55 C 156.33 353.85 157.27 352.74 158.47 351.69 Z M 156.73 359.1 L 156.36 360.18 C 158.98 361.08 161.27 362.52 163.56 364.71 L 164.35 363.88 C 161.94 361.58 159.51 360.06 156.73 359.1 Z M 164.37 352.38 C 166.51 355.65 167.72 359.24 167.96 363.05 L 166.82 363.12 C 166.59 359.51 165.45 356.11 163.41 353.01 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 100 340 L 140 340 L 140 380 L 100 380 Z" fill="url(#mx-gradient-4d72f3-1-3334b9-1-s-0)" stroke="none" pointer-events="none"/><path d="M 105.95 345.14 L 111.26 350.45 L 110.45 351.26 L 105.14 345.95 L 105.14 350.29 L 104 350.29 L 104 344.57 C 104 344.26 104.26 344 104.57 344 L 110.29 344 L 110.29 345.14 Z M 136 344.57 L 136 350.29 L 134.86 350.29 L 134.86 345.95 L 129.55 351.26 L 128.74 350.45 L 134.05 345.14 L 129.71 345.14 L 129.71 344 L 135.43 344 C 135.74 344 136 344.26 136 344.57 Z M 134.86 369.71 L 136 369.71 L 136 375.43 C 136 375.74 135.74 376 135.43 376 L 129.71 376 L 129.71 374.86 L 134.05 374.86 L 128.74 369.55 L 129.55 368.74 L 134.86 374.05 Z M 134.57 359.55 C 134.57 357.65 132.38 355.78 128.71 354.54 L 129.08 353.46 C 133.3 354.88 135.71 357.1 135.71 359.55 C 135.71 362 133.3 364.22 129.08 365.65 L 128.71 364.56 C 132.38 363.32 134.57 361.45 134.57 359.55 Z M 105.46 359.55 C 105.46 361.37 107.51 363.19 110.94 364.43 L 110.56 365.51 C 106.59 364.07 104.32 361.9 104.32 359.55 C 104.32 357.2 106.59 355.03 110.56 353.6 L 110.94 354.67 C 107.51 355.91 105.46 357.73 105.46 359.55 Z M 111.26 369.55 L 105.95 374.86 L 110.29 374.86 L 110.29 376 L 104.57 376 C 104.26 376 104 375.74 104 375.43 L 104 369.71 L 105.14 369.71 L 105.14 374.05 L 110.45 368.74 Z M 120 355.02 C 115.92 355.02 113.71 353.97 113.71 353.53 C 113.71 353.1 115.92 352.05 120 352.05 C 124.08 352.05 126.29 353.1 126.29 353.53 C 126.29 353.97 124.08 355.02 120 355.02 Z M 120.02 359.45 C 116.11 359.45 113.71 358.38 113.71 357.8 L 113.71 355.02 C 115.12 355.8 117.62 356.16 120 356.16 C 122.38 356.16 124.88 355.8 126.29 355.02 L 126.29 357.8 C 126.29 358.38 123.91 359.45 120.02 359.45 Z M 120.02 363.81 C 116.11 363.81 113.71 362.74 113.71 362.16 L 113.71 359.35 C 115.1 360.17 117.57 360.59 120.02 360.59 C 122.45 360.59 124.9 360.17 126.29 359.35 L 126.29 362.16 C 126.29 362.74 123.91 363.81 120.02 363.81 Z M 120 367.72 C 115.93 367.72 113.71 366.63 113.71 366.07 L 113.71 363.71 C 115.1 364.53 117.57 364.95 120.02 364.95 C 122.45 364.95 124.9 364.53 126.29 363.72 L 126.29 366.07 C 126.29 366.63 124.07 367.72 120 367.72 Z M 120 350.91 C 116.42 350.91 112.57 351.73 112.57 353.53 L 112.57 366.07 C 112.57 367.91 116.31 368.87 120 368.87 C 123.69 368.87 127.43 367.91 127.43 366.07 L 127.43 353.53 C 127.43 351.73 123.58 350.91 120 350.91 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 20 340 L 60 340 L 60 380 L 20 380 Z" fill="url(#mx-gradient-4d72f3-1-3334b9-1-s-0)" stroke="none" pointer-events="none"/><path d="M 46.88 368.49 C 44.98 370.03 40.98 370.84 37.15 370.84 C 33.32 370.84 29.31 370.03 27.41 368.49 L 27.41 371.59 L 27.41 371.59 C 27.41 373.14 31.41 374.87 37.15 374.87 C 42.88 374.87 46.88 373.14 46.88 371.59 Z M 46.88 362.58 L 48.03 362.58 L 48.03 362.58 C 48.03 363.27 47.68 363.92 47.01 364.51 C 47.82 365.23 48.03 365.93 48.03 366.43 C 48.03 366.44 48.03 366.44 48.03 366.44 L 48.03 371.59 L 48.03 371.59 C 48.03 374.45 42.42 376 37.15 376 C 31.88 376 26.29 374.46 26.27 371.61 C 26.27 371.61 26.26 371.61 26.26 371.6 L 26.26 366.43 C 26.26 366.43 26.26 366.43 26.26 366.43 C 26.27 365.93 26.47 365.22 27.28 364.51 C 26.48 363.79 26.27 363.09 26.26 362.6 L 26.26 362.6 C 26.26 362.59 26.26 362.59 26.26 362.59 L 26.26 357.42 C 26.26 357.42 26.26 357.42 26.26 357.41 C 26.27 356.91 26.47 356.21 27.29 355.5 C 26.48 354.78 26.27 354.08 26.26 353.58 L 26.26 353.58 C 26.26 353.58 26.26 353.58 26.26 353.58 L 26.26 348.41 C 26.26 348.41 26.26 348.4 26.26 348.4 C 26.27 345.54 31.88 344 37.15 344 C 40.12 344 42.98 344.47 44.99 345.3 L 44.56 346.35 C 42.68 345.58 39.98 345.13 37.15 345.13 C 31.41 345.13 27.41 346.86 27.41 348.41 C 27.41 349.96 31.41 351.69 37.15 351.69 C 37.3 351.69 37.45 351.69 37.61 351.68 L 37.65 352.81 C 37.48 352.82 37.32 352.82 37.15 352.82 C 33.32 352.82 29.31 352 27.41 350.46 L 27.41 353.57 L 27.41 353.57 L 27.41 353.58 C 27.41 354.17 28.02 354.69 28.53 355.02 C 30.07 356 32.82 356.67 35.9 356.81 L 35.84 357.94 C 32.73 357.8 30.01 357.16 28.25 356.17 C 27.82 356.49 27.41 356.93 27.41 357.42 C 27.41 358.97 31.41 360.7 37.15 360.7 C 37.71 360.7 38.27 360.68 38.81 360.64 L 38.89 361.77 C 38.32 361.81 37.74 361.83 37.15 361.83 C 33.32 361.83 29.31 361.02 27.41 359.47 L 27.41 362.58 L 27.41 362.58 C 27.41 363.19 28.02 363.7 28.53 364.03 C 30.29 365.16 33.59 365.85 37.15 365.85 L 37.4 365.85 L 37.4 366.99 L 37.15 366.99 C 33.54 366.99 30.25 366.32 28.25 365.18 C 27.82 365.51 27.41 365.94 27.41 366.43 C 27.41 367.98 31.41 369.71 37.15 369.71 C 42.88 369.71 46.88 367.99 46.88 366.44 L 46.88 366.43 L 46.88 366.43 C 46.88 365.94 46.47 365.5 46.04 365.18 C 45.76 365.34 45.46 365.49 45.12 365.63 L 44.69 364.58 C 45.1 364.41 45.46 364.23 45.76 364.04 C 46.27 363.7 46.88 363.17 46.88 362.58 Z M 51.78 354.3 L 48.58 354.3 C 48.39 354.3 48.21 354.2 48.1 354.05 C 48 353.89 47.98 353.69 48.05 353.52 L 49.99 348.65 L 42.62 348.65 L 39.19 355.45 L 42.84 355.45 C 43.02 355.45 43.19 355.54 43.3 355.68 C 43.4 355.83 43.44 356.02 43.38 356.19 L 40.13 366.34 Z M 53.53 354.12 L 39.25 368.88 C 39.14 368.99 38.99 369.05 38.84 369.05 C 38.74 369.05 38.63 369.03 38.54 368.97 C 38.32 368.84 38.21 368.57 38.29 368.32 L 42.05 356.59 L 38.26 356.59 C 38.07 356.59 37.88 356.48 37.78 356.32 C 37.67 356.15 37.66 355.94 37.75 355.77 L 41.75 347.83 C 41.85 347.64 42.05 347.52 42.26 347.52 L 50.84 347.52 C 51.02 347.52 51.2 347.61 51.31 347.77 C 51.42 347.92 51.44 348.12 51.37 348.29 L 49.42 353.16 L 53.12 353.16 C 53.35 353.16 53.56 353.3 53.65 353.51 C 53.74 353.72 53.69 353.96 53.53 354.12 Z M 28.24 371.81 C 29.05 372.27 30.07 372.65 31.27 372.95 L 31.55 371.85 C 30.46 371.58 29.51 371.23 28.8 370.83 Z M 31.27 363.89 L 31.55 362.79 C 30.46 362.51 29.51 362.16 28.8 361.76 L 28.24 362.75 C 29.05 363.2 30.07 363.59 31.27 363.89 Z M 28.24 353.68 L 28.8 352.69 C 29.51 353.09 30.46 353.45 31.55 353.72 L 31.27 354.82 C 30.07 354.52 29.05 354.13 28.24 353.68 Z" fill="#ffffff" stroke="none" pointer-events="none"/><rect x="20" y="300" width="160" height="80" fill="none" stroke="#90a6c2" stroke-width="2" pointer-events="none"/><rect x="20" y="140" width="160" height="40" fill="#90a6c2" stroke="#90a6c2" stroke-width="2" pointer-events="none"/><g fill="#ffffff" font-family="Rubik" pointer-events="none" text-anchor="middle" font-size="22px"><text x="99.5" y="173.5">development</text></g><rect x="20" y="220" width="160" height="40" fill="#39414d" stroke="#90a6c2" stroke-width="2" pointer-events="none"/><g fill="#FFFFFF" font-family="Rubik" font-style="italic" pointer-events="none" text-anchor="middle" font-size="16px" opacity="0.5"><text x="99.5" y="246">OPTIONAL</text></g><rect x="20" y="260" width="160" height="40" fill="#39414d" stroke="#90a6c2" stroke-width="2" pointer-events="none"/><g fill="#FFFFFF" font-family="Rubik" font-style="italic" pointer-events="none" text-anchor="middle" font-size="16px"><text x="99.5" y="286">long-lived</text></g><rect x="20" y="180" width="160" height="40" fill="#90a6c2" stroke="#90a6c2" stroke-width="2" pointer-events="none"/><g fill="#ffffff" font-family="Rubik" pointer-events="none" text-anchor="middle" font-size="16px" opacity="0.5"><text x="99.5" y="198.5">environment</text></g></g></svg>
|